-3

我想在打开文件时将数据写入文件,但它不起作用。Calendar getTime 效果很好,System.out.println() 证明了这一点。请问,有什么想法,怎么了...?

主类:

 public static void main(String[] args) throws IOException {
        // TODO code application logic here
        CurrentTime ct = new CurrentTime();
    }

当前时间类:

public class CurrentTime {

    public OutputStream output;
    public InputStream input;
    public Process npp;

    CurrentTime() throws IOException
    {
        Timer t = new Timer();
        npp =  Runtime.getRuntime().exec("notepad");
        output = npp.getOutputStream();        

        TimerTask task = new TimerTask() {
            @Override
            public void run()
            {                 
                String dateStr = Calendar.getInstance(new Locale("ua", "UA")).getTime().toString();
                System.out.println(dateStr);

                try {
                    output.write(dateStr.getBytes());
                    output.flush();                          
                } catch (IOException ex) {                    
                    Logger.getLogger(CurrentTime.class.getName()).log(Level.SEVERE, null, ex);
                }                
            }
        };
        t.schedule(task, 1000, 2000);

    }
}

也许这段代码完全错误,np。就这样,我想从任何一方发现这一刻,这根本不可能吗?

更新:这不再是实际的了,只是为了说明一下,当时我试图直接对文本编辑器实施某种tailing操作,现在我明白这个想法是多么不正常......当然必须使用完全其他的方式来实现。

4

3 回答 3

1

你做错了 - 这是不可能的。notepad在运行时绝对会忽略它的输入(就像大多数 GUI 程序一样)。如果您想显示一个文本框并在其中写入文本,只需使用 Swing/SWT/...

如果您只想写入文件,只需新建一个PrintWriter并使用它来写入文件:http ://docs.oracle.com/javase/6/docs/api/java/io/PrintWriter.html

于 2012-12-20T11:54:36.110 回答
1

有趣的:

让我们以简单的方式处理这个问题。

1. Save a file test.txt somewhere. 
2. Open that file and keep it opened

在 Java 中写入此文件(标准代码)

FileWriter fw = new FileWriter(new FileOutputStream(new File("c:/test.txt")));
fw.write("ABC")

现在再次转到记事本文件。我通常使用 Textpad 它会自动刷新(通过警报),因为我们在后台更改了它(在您的情况下通过 Java)。

我希望这会澄清一点。

为了避免尝试过度使用通用记事本 exe 并不能保证您将写入哪个文件。我不确定 Windows 是如何处理它的,因为您可以一次打开 3 个不同的文件,并且您希望哪个文件拥有您的数据用java写的???

于 2012-12-20T12:02:29.720 回答
0

您不应该尝试通过记事本书写。查看PrintWriter

于 2012-12-20T11:53:55.960 回答