如何使用java从远程系统读取文件?
2022-09-03 12:21:40
我在一台计算机中复制了一个文件,我需要从另一台计算机访问该文件。我不确定,为此使用哪种协议或哪种技术?请为我提供任何提示。
更新:
我正在使用Ubuntu Linux系统。我用了代码:
File f = new File("//192.168.1.157/home/renjith/picture.jpg");// 192.168.1.157 is the ip of the computer, where I have the picture file
Image image = ImageIO.read(f);
但它给出了一个例外:
javax.imageio.IIOException: Can't read input file!
at javax.imageio.ImageIO.read(ImageIO.java:1275)
我也分享了renjith文件夹。