jcifs Questions
3
Solved
I have a question about accessing file with Samba JCIFS.
So there is a server I want to access, let's call it server.unv.edu and the workgroup is WKGRP.
There is a share in this server: \\server.un...
6
planning to read a file over a Windows from Ubuntu in Java using jcifs.Tried a simple approach using:
String user = "mydomain;myuser:mypassword";
NtlmPasswordAuthentication auth = new NtlmPassword...
3
I'm having some issues with Kerberos authentication to perform file management with JCifs (Kerberos extension version 1.3.17)
This is my current configuration of krb5.conf:
[libdefaults]
default...
2
Solved
I'm wondering how I can move a file from one folder to another on an SMB share, using JCIFS.
First, there is no move() method whatsoever.
Then, this approach:
SmbFile smbFromFile = new SmbFile("...
4
Solved
jCIFS is a great library for connecting to SMB shares on Android, and it works excellently with almost all setups I've tested with.
I do, however, experience incredibly slow performance when using...
7
Solved
I was just testing JCIFS for accessing Windows shares. It is very slow to the point of being completely unusable.
import jcifs.smb.*;
class First {
public static void main(String[] args) throws ...
Retinue asked 10/5, 2012 at 12:8
2
I need to connect to a UNC "directory" and to create a file in that directory. I found this entry on stackoverflow : access to file using Java with Samba JCIFS. A good thing is that it works well o...
1
I'm trying to move some files from a stored directory to a remote server "BOB" using jcifs SMB. I need to use jcifs because the move comes via and Android app, I.E. I'm moving photos from the app t...
2
Solved
I need to connect from my Android phone to a Windows PC share and access files. I saw some sample apps in Android market that access share folders using smb/samba. But I have no idea about how to c...
3
I have to read a text file from my Java application.
The file contains many rows and this file is updated every X minutes from an external unknown application that appends new lines to the file.
...
Geralyngeraniaceous asked 4/8, 2016 at 15:17
2
We are using JCIFS(1.3.15) to authenticate from a Windows 7 client which sends only NTLM v2 responses.
We are getting the following error when we use a Windows 2008 R2 domain controller
jcifs.smb...
Threepence asked 15/12, 2010 at 10:47
2
I am using JCIFS to access a file share with a lot of Japanese names on it, and I am running into issues when the ・character in it
For example:
the path 人事部/要員・コスト管理課/
the first part is ok, but ...
2
Solved
I've got a bit of an issue and I've been asking regarding it quite a few times, but I think I'm one step closer now, so hopefully someone can help me with the rest.
My previous questions:
Connec...
Upstroke asked 30/1, 2012 at 0:32
7
Are there any alternatives for JCIFS NTLM library?
2
I am trying to access a shared folder in my company network via JCIFS. But when i try to list the files under the shared folder, it throws an SmbException as below,
jcifs.smb.SmbException: 0xC0000...
2
Solved
I need to connect to a shared folder on a remote windows machine through java , where i put my domain authentication (username and password ) in the code , here is my code
File file = new File(&qu...
5
Solved
Could anybody help me to copy file from shared folder to local drive? My code is:
import jcifs.smb.NtlmPasswordAuthentication;
import jcifs.smb.SmbFile;
import jcifs.smb.SmbFileInputStream;
import...
Contamination asked 13/11, 2012 at 10:34
1
Solved
I'm using JCIFS to write to a windows share. This has been working fine. All of a sudden it stopped working and I'm now getting a jcifs.smb.SmbAuthException: Access is denied. exception. I know tha...
2
I am trying to access a folder on my local computer using an smb URL.
my project is using the jars: commons-vfs2-2.0.jar and jcifs-1.3.17.jar (and all the other required jars).
The code in it's ent...
Izabel asked 23/7, 2012 at 12:37
1
Solved
I had the same problem:
How do I use JCIFS with apache VFS to access an SMB URL?
... after including commons-vfs-sandbox-2.1-SNAPSHOT.jar in the classpath I now get this exception:
Exception in t...
Blueweed asked 5/1, 2015 at 12:9
1
I want to add an header to an existing pdf using iText.
I had no problem except that sometimes my function create a pdf with the correct header and footer but with the existing pdf page rotated.
...
2
Solved
So I'm trying to write a file from android device to windows shared folder. I'm using latest version of JCIFS and code which displays available network shares works fine. So I assume everything is ...
2
I'm using JCIFS in my new Android project. Somehow I've decided to use URL class to generalized the file path (so I can add more protocol later). What I did is as below
URL url = new URL("smb://19...
1
Solved
Can they work together?
Some project sample would be great.
I have a web-app on Spring3. And i need to implement NTLM. Spring stopped NTLM support in 3rd version. Is there any possibilities to im...
Nadda asked 17/1, 2012 at 12:39
1
I'm using the free jCIFS library to connect to my NAS device via CIFS, and it's working great. I can connect and get a list of filenames, etc. without any issues.
Now I'd like to open one of the f...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.