English 中文(简体)
有可能在java建立一个既包括网络辅助部分,又包括一个 desktop组件的方案。
原标题:is it possible to create a program that has both a web app component, and a desktop app component, in java

我想建立一个方案,以自动方式向许多表格(千)提交相同/相似的数据。

我想做的是,在屏幕上制作和展示网络表格(在用户填充帽子和表格之前),一部分是通过网络浏览器进行的,该浏览器是桌面仪器的一部分。 每一份表格的回复都由台式机显示,台式机然后使用网络机向下一套表格(必须提交数据)。

我的问题

  1. Is it possible to do the above?
  2. How does the desktop app talk to web app? Any examples you can give me on this. or any tutorials/guides? What I am thinking is, there is a simple button in the desktop app that indicates "success" or "failure" of a form submission- as per the button clicked by user, appropriate message (whether to proceed to next site in case of "success" or reload current site in case of "failure") is sent to web app by the desktop app. How do I actually implement this? How can the desktop app send messages to the web app that cannot be reverse engineered or hacked into?
  3. Ideally I want that even if a hacker reverse engineers the desktop app, he should not be able to hack into the web app portion. (Since the web app portion does a crucial part of the work, so hacking the desktop app portion will not be any help in reverse engineering the whole application)...
  4. Finally is it possible to do all of the above if I use Google App Engine for the web app portion?
问题回答

这无疑是可能的。 这是欧洲黄麻和黄麻业联合会应长期完成的任务之一。 今天,“企业”解决办法很可能是用三个部分来做到这一点:网络应用、独立的全球倡议、以及针对两个部分服务的《最新信息预报》。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签