VILLA_LOBOS Posted April 7, 2005 Report Share Posted April 7, 2005 Como faço pra entrar com dados tipo String? sei entrar com dados int e float, mas string não sei, alguém pode me ajudar? Quote Link to comment Share on other sites More sharing options...
0 CKorneLL Posted April 7, 2005 Report Share Posted April 7, 2005 Para uma string você entra assimstr = JOptionPane.showInputDialog("Digite algo")Imprime assim...JOptionPane.showMessageDialog(null, "String nome" + str, "Teste") Quote Link to comment Share on other sites More sharing options...
0 Guest wagner Posted April 8, 2005 Report Share Posted April 8, 2005 mas como faz isso em modo de texto??? Quote Link to comment Share on other sites More sharing options...
0 Graymalkin Posted April 9, 2005 Report Share Posted April 9, 2005 Aí vai um exemplo simples:import java.io.*; public class Ex1 { public static void main(String args[]) { InputStreamReader entrada = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(entrada); String valorstr = ""; System.out.print("Digite o texto: "); try { valorstr = br.readLine(); System.out.println("Você digitou: " + valorstr); } catch (Exception e) { System.out.println("Erro: " + e.getMessage()); } } }Abraços,Graymalkin Quote Link to comment Share on other sites More sharing options...
Question
VILLA_LOBOS
Como faço pra entrar com dados tipo String? sei entrar com dados int e float, mas string não sei, alguém pode me ajudar?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.