我想创建一个简单的独立应用程序,它将从用户那里获取一些输入(一些数字和数学函数 f(x,y...))并将它们写入文件。然后在这个文件的帮助下,我将运行一个命令。
我需要的基本成分:
-- 用于用户输入的 JTextArea。
-- ButtonHandler/ActionListener 并将输入写入 (txt) 文件
-- ButtonHandler/ActionLister 执行命令
最好的方法是什么?
我拥有的当前正在运行的代码(基本上是一个玩具) - 不写任何东西,只是执行 - 是:
import java.applet.*;
import java.lang.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Dialog;
import java.io.IOException;
import java.io.InputStream;
import java.io.*;
import java.util.*;
import java.io.BufferedWriter;
public class Runcommand3
{
public static void main(String[] args) throws FileNotFoundException, IOException
{
//JApplet applet = new JApplet();
//applet.init();
final JFrame frame = new JFrame("Change Backlight");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel();
panel.setLayout(null);
frame.add(panel);
JButton button = new JButton("Click me to Run");
button.setBounds(55,100,160,30);
panel.add(button);
frame.setSize(260,180);
frame.setVisible(true);
//This is an Action Listener which reacts to clicking on the button
button.addActionListener(new ButtonHandler());
}
}
class ButtonHandler implements ActionListener{
public void actionPerformed(ActionEvent event){
double value = Double.parseDouble(
JOptionPane.showInputDialog("please enter backlight value"));
//File theFile = new File("thisfile.txt");
//theFile.write(value);
String command = "xbacklight -set " + value;
try{Runtime run = Runtime.getRuntime();
Process pr = run.exec(command);}
catch(IOException t){t.printStackTrace();}
}
}
在上面的示例中,如何将“值”写入文件?那么,如何添加更多输入(更多文本字段)?我可以在同一堂课上做还是需要更多?我的困惑来自(主要但不仅是)在 ButtonHandler 类内部我不能定义任何其他对象(即打开和写入文件等)。