将 UI 内容写入服务器上的文件
我有一个弹出文本区域,用户可以在其中写一些冗长的评论。我想在“提交”时将文本区域的内容存储到服务器上的文件中。最好的方法是什么以及如何做?
谢谢,
I've got a pop-up textarea, where the user writes some lengthy comments. I would like to store the content of the textarea to a file on the server on "submit". What is the best way to do it and how?
THanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很容易做到。文本可以只是一个字符串或 stringBuffer 的大小和格式,然后将其传递给您的 java 代码并使用文件操作写入文件。
这是一些 GWT 代码,但它仍然是 Ajax,所以它会类似。获取事件的处理程序以捕获按钮提交,然后获取文本区域中的文本。
我不知道假冒机制,因为您没有显示任何代码,但我只是通过读取文件列表中的文件名逐行创建了一个文件名文件:
您可以做类似的事情,只写出从文本区域得到的几行。如果没有更多内容,我无法真正获得更具体的信息。
HTH,
詹姆斯
This would be very easy to do. The text could be just a string or stringBuffer for size and formatting, then just pass that to your java code and use file operations to write to a file.
This is some GWT code, but it's still Ajax, so it will be similar. Get a handler for an event to capture the button submittal, then get the text in the text area.
The passing off mechanism I don't know because you don't show any code, but I just created a file of filenames, line by line by reading filenamesout of a list of files with this:
You could do something similar, only write out the few lines you got from the textarea. Without more to go on I can't really get more specific.
HTH,
James