当前位置: 技术问答>java相关
能不能在局域网的其他机器上(有充分权限)写文本文件?
来源: 互联网 发布时间:2015-04-18
本文导语: RT | 映射网络驱动器就可以实现了。 | 如果你映射了网络驱动器,那么网络上其他机器的磁盘就相当于本机磁盘了! 不过这样做并不是好的解决方法! 我也不会!呵呵! | ...
RT
|
映射网络驱动器就可以实现了。
|
如果你映射了网络驱动器,那么网络上其他机器的磁盘就相当于本机磁盘了!
不过这样做并不是好的解决方法!
我也不会!呵呵!
不过这样做并不是好的解决方法!
我也不会!呵呵!
|
你是pb程序员?
newskysoft@163.com
newskysoft@163.com
|
String filename = "z:test.txt"; //please map the network as Z: drive
//I'm not sure if using "\comp1ctest.txt" will work or not. You may test it by yourself
File h_file = new File(filename);
BufferedWriter outbuff = new BufferedWriter( new FileWriter(h_file) );
outbuff.write("Name,",0,5);
outbuff.close();
Hope it helps.
//I'm not sure if using "\comp1ctest.txt" will work or not. You may test it by yourself
File h_file = new File(filename);
BufferedWriter outbuff = new BufferedWriter( new FileWriter(h_file) );
outbuff.write("Name,",0,5);
outbuff.close();
Hope it helps.
|
applet 数字签名
呵呵 随便说说的
呵呵 随便说说的