我正在使用 java,目前,我可以从 Internet 下载文本文件,读取该文件,然后将该文件发送到Scanner
. 是否可以跳过将其写入硬盘并将其直接发送到扫描仪?我尝试更改一些代码,但没有成功。
URL link = new URL("http://shayconcepts.com/programming/ComicDownloader/version.txt");
ReadableByteChannel rbc = Channels.newChannel(link.openStream());//Gets the html page
FileOutputStream fos = new FileOutputStream("version.txt");//Creates the output name of the output file to be saved to the computer
fos.getChannel().transferFrom(rbc, 0, 1 << 24);
fos.close();
Scanner sc = new Scanner(new FileReader("version.txt"));