Java:Criando um arquivo em Java: Difference between revisions

From Wiki
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Gravando um arquivo em Java  
Gravando um arquivo em Java  


<code java5>
= Código =
 
  import java.io.*;
  import java.io.*;
   
   
Line 27: Line 28:
   }
   }
  }
  }
</code>
 
= Ver também =
 
 
*[[BIND: Configurando o suporte ao Active Directory]]
 
 
*[[Java| Mais Artigos sobre Java]]
*[[Tecnologias|  Mais Artigos sobre outras Tecnologias]]
*[[Apache HTTP Server|  Mais Artigos sobre Apache HTTP Server]]
*[[Linux|  Mais Artigos sobre Linux / UNIX / AIX]]
 
[[Category:Linux]]
[[Category:Tomcat]]
[[Category:Java]]
[[Category:Tecnologias]]

Latest revision as of 22:41, 25 September 2014

Gravando um arquivo em Java

Código

import java.io.*;

/**
* @author ebasso
*/
public class GravaArquivo {

 public static void main(String[] args) {
   FileOutputStream saida;
   PrintStream fileSaida;
   String sI = "";
   try {
     saida = new FileOutputStream("meuarquivo.txt");
     fileSaida = new PrintStream(saida);

     for (int i = 1; i < 10; i++) {
       sI = String.valueOf(i);
       fileSaida.println(sI);
     }
   }
   catch (Exception e){
     System.err.println(e);
   }
 }
}

Ver também