Web サイトのインデックス ページを取得するコードを Java で記述していますが、ファイルを保存しようとすると空白のドキュメントが保存されます。
コードは次のとおりです。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import javax.swing.JOptionPane;
import java.io.*;
public class source {
public static void main(String[] args) throws IOException {
String filename;
filename = JOptionPane.showInputDialog("Enter the site");
PrintWriter outputFile = new PrintWriter("files\\"+filename+".html");
URL url = new URL("http://"+filename);
URLConnection con = url.openConnection();
InputStream is =con.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line = null;
while ((line = br.readLine()) != null) {
System.out.println(line);
outputFile.println(line);
}
System.exit(0);
}
}
私は何を間違っていますか?
HTMLを保存するために追加する必要があるものはありますか?