0

我正在使用这段代码将数据保存到 .dat 文件中:

void saveFile () {

    try {
        FileOutputStream fos = new FileOutputStream ("File.dat", true);
        DataOutputStream dos = new DataOutputStream (fos);
        dos.writeUTF (saves[count][0]);
        dos.writeUTF (saves[count][1]);
        dos.writeUTF (saves[count][2]);
        dos.writeUTF (saves[count][3]);
        dos.writeUTF (saves[count][4]);
        dos.writeUTF (saves[count][5]);
        JOptionPane.showMessageDialog (this, "The Record has been Saved Successfully",
                    "Record Saved", JOptionPane.PLAIN_MESSAGE);
        txtClear ();
        dos.close();
        fos.close();
    }
    catch (IOException ioe) {
        JOptionPane.showMessageDialog (this, "There are Some Problem with File",
                    "Problem", JOptionPane.PLAIN_MESSAGE);
    }

}

我需要将 .dat 文件托管在某个在线域上 说http://Domain.com/File.dat 我需要对这段代码做什么才能完成保存?

4

1 回答 1

1

1-“域”在同一台服务器上管理,然后您只需将文件放在正确的位置(通常在“www”文件夹下,检查您的网络服务器配置)

2-这是另一台计算机,那么您必须将文件传输到那里(FTP?另一个使用套接字的Java代码?主机提供的API?...)


无关,但你应该closeStreams一个finally街区

xxxxxxxStream s = null;
try {
  s = new xxxxxxxStream();
} catch (WhateverException we) {
  ...
} finally {
  s.close();
}
于 2012-08-08T13:12:40.440 回答