Problema Scanner

di il
2 risposte

Problema Scanner

Salve ragazzi ho un problemino con questo programma

package lorenzo.lambiase;
import java.io.*;
import java.util.Scanner;


public class file {
    static public void main (String args[])   {

try {
Scanner scanner=new Scanner(System.in);
    FileOutputStream prova = new FileOutputStream("Prova.html");
    PrintStream scrivi = new PrintStream(prova);
    "scrivi=scanner.;"
}
catch (IOException e){
System.out.println("Errore:"+e);
System.exit(1);
}        
System.out.println("File creato");
 }
}
bhe il programma consiste nello scrivere un codice html e salvarlo nel file prova.html.
adesso pero quale metodo devo usare con la scanner per l' inserimento?
Grazie a tutti in anticipo

2 Risposte

  • Re: Problema Scanner

    Ciao, se ho capito il tuo problema è come prendere una stringa dalla tastiera. In questo caso puoi usare il metodo "nextLine". Ad esempio:
    
    Scanner s = new Scanner(System.in);
    		FileOutputStream fos = new FileOutputStream("prova.html");
    		PrintStream ps = new PrintStream(fos);
    		while(s.hasNextLine()){
    			String line = s.nextLine();
    			ps.println(line);
    			if (line.equalsIgnoreCase("</html>"))
    				break;
    		}
    
  • Re: Problema Scanner

    Woo grazie Della sei mitico GRAZIEEEEE
Devi accedere o registrarti per scrivere nel forum
2 risposte