读取表单文件并将其内容发送到GWT中的clinet
我需要在服务器端读取表单 TXT 文件并将其内容发送到客户端以在标签或任何东西中打印,我需要知道我将 TXT 文件放在服务器包上还是在 WAR 中,以及如何编码吗??谢谢
I need to read form TXT file on the server side and send its contents to the client side to print in a label or any thing, i need to know where i place the TXT file is it on the server package or in WAR and how to code it?? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件放在哪里并不重要。它必须位于服务器上,并且 php 脚本必须能够打开该文件。您可以使用 php 按以下方式准备文本文件。
然后使用 GWT 向该文件发出 http 请求。
读取文件:
发出 http 请求:
It doens't really matter where you place the file. It must be on the server and a php script must be able to open the file. You can ready the text file the following way with php.
Then make a http request with GWT to that file.
Read the file:
Make http request: