Jump to content
Fórum Script Brasil
  • 0

Ajuda com armazenamento informação


Ricard

Question

Olá pessoal,

Foi passado um trabalho que devemos modificar, o problema se resume no seguinte:

public class Main {

    public static void main(String args[]){
        String le_do_us ="";
        String menu = "";
        manipula gerencia = new manipula();
        do{
            menu = JOptionPane.showInputDialog(
                    "1- Cadastro de curso\n"
                  + "2- Cadastro de aluno\n"
                  + "0- Sair"
                  );
            if(menu.equals("1")){
                le_do_us = JOptionPane.showInputDialog(
                        "Digite qual"
                      + "curso deseja cadastrar");
                gerencia.grava(le_do_us);
Devemos pegar a informação do le_do_us e armazenar em um array de N possicoes, feito em outra classe.
public class manipula {
        public void grava (String conteudo){
        try{
            BufferedWriter out = new BufferedWriter(
                new FileWriter("c:\\Arquivo.txt", true));
                out.write(conteudo + ";");
                out.newLine();
                //out.write("\n");
                out.close();
        }catch(IOException e){
            JOptionPane.showMessageDialog(null,
                    "Houve um erro " + e.getMessage());
        }
    }

No exemplo acima estou salvando em um arquivo porém não consigo entender, nem fazer funcionar um array ou vetor pra salvar as informações.

Grato.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...