我正在制作一个小型应用程序,例如旅行社应用程序,我想知道如何发送输入的信息(来自JOptionPane.showInputDialog (""))类型的输入。我需要将其发送到文件,以后可以在其中检索它,例如数据库。有任何想法吗?

码:

public boolean action (Event e, Object o)
{
    String firstName = JOptionPane.showInputDialog ("Please Enter your first name: ");
    String lastName = JOptionPane.showInputDialog ("Please Enter your last name: ");
    String address = JOptionPane.showInputDialog ("Please Enter your address: ");
    String telephone = JOptionPane.showInputDialog ("Please Enter your telephone num: ");
    return true;
}

最佳答案

参见前面的SO问题。基本上,您只是将字符串打印到输出中。

How do I create a file and write to it in Java?

09-28 10:28