私はJavaを使用していますが、現在、インターネットからテキストファイルをダウンロードし、そのファイルを読み取ってから、そのファイルをに送信できます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"));