可以保存数据的Web小程序
很多年前我做过一些相当基础的编程,但我很生疏。我想编写一个非常基本的网络小程序,并且希望它能够保存数据。将其视为一个非常简单的游戏,并认为我希望游戏能够保存各个玩家的分数,以便我能够去某个地方并查看分数列表。 (除了我希望数据比只有一个数字更复杂一点,并且我希望将其保存为 .csv)。
我希望我能把它写成一个java小程序。是不是太乐观了?编写这样的东西最简单的方法是什么?我没有什么花哨的东西,只是用最简单的方法来做到这一点。您有什么建议吗?
I did some fairly basic programming many years ago, but I'm very rusty. I want to program a pretty basic web applet, and I want it to be able to save data. Think of it as a very simple game, and think that I want the game to be able to save the scores of the various players, so that I would be able to go somewhere and see the list of scores. (Except I want the data to be a little more complicated than the just one number, and I want it to be saved as a .csv).
I was hoping that I can write it as a java applet. Was that too sanguine? What is the easiest way to program such a thing? I don't anything fancy, just the easiest possible way to do it. Do you have any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯...如果您想要一个概念...据我所知,您可以简单地创建
客户端数据从小程序返回到 servlet(保存或
某物);
会话或文件中,无论您喜欢什么...)
然后您可以创建一个服务或另一个小程序来获取保存的数据
并对其进行分析;
有帮助的报告
Emm... If you want a conception... As I can get it, you can simply create
clients data from applet back to servlet (to have it saved or
something);
a session or in a file whatever you like...)
then you can create a service or another applet to get the saved data
and analyze it;
Report that helps