Código Java:
Ver original
import 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 { try { // Create a URL for the desired page // 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. w.write(str); w.close(); } } }
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.