我想用答案摆脱这个问题......我熟悉阅读本地系统文件,如下所示,
BufferedReader reader = new BufferedReader(new FileReader("/path/to/file.txt"));
String line = null;
while ((line = reader.readLine()) != null) {
// ...
}
假设,我想从我朋友的电脑上读取一个 txt 文件,他在线,我也在线,所以我们只能通过互联网连接(我不使用任何其他连接,如 wan/lan 等)。我的疑问是我可以通过 ip 地址或其他任何使用 java 编程的方式访问我朋友计算机的 txtfile...
请帮助...
thnx提前..