wBuenas noches, tengo el siguiente código:
Código Java:
Ver originalimport java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
public class LeerPaginaEscribirArchivo {
public static void main
(String[] args
) {
try {
// Create a URL for the desired page
URL url
= new URL("http://lordpakus.blogspot.com.es/2012/05/lista-de-librerias-java-mas-usadas.html");
// Read all the text returned by the server
while ((str = in.readLine()) != null) {
str = in.readLine().toString();
// str is one line of text; readLine() strips the newline character(s)
}
in.close();
}
try {
//What ever the file path is.
File statText
= new File("/home/prueba.txt");
w.write(str);
w.close();
System.
out.
println("Problem writing to the file statsTest.txt"); }
}
}
me da error de nullpointerexception en línea 45, por eso puse que apunte a null de inicio pero sigue fallando y no sé cómo arreglarlo.
Cogí un código que copia el codigo de la página web a un string str y lo muestra por pantalla pero ahora qeu quiero copiarlo a un archivo no puedo..
Qué falla? Gracias.