针对各种移动设备的最佳框架
我正在尝试在客户端-服务器模型上构建移动应用程序,其中客户端是人们的移动设备,服务器是 PC - 全部通过蓝牙连接。
我期望客户端非常薄——足以建立通信、显示一些文本并中继用户输入。
最好的开发框架是什么? 我想要最大可能的设备兼容性(例如,不仅仅是系列 60 功能设备),而不是很酷的功能 - 但能够轻松扩展到彩色设备或具有更高显示分辨率的设备会很好。
I'm trying to build a mobile application on a client-server model where clients are people's mobile devices and the server is a PC - all connecting over bluetooth.
I'm expecting the client to be very thin - just enough to establish communications, display some text, and relay user input.
What's the best framework to develop in? I want the maximum possible device compatibility (so for example not just series 60 capabale devices) as opposed to cool features - but the ability to scale easily to colour devices or ones with higher dispaly resolutions would be nice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在当前的移动领域,最大的安装基础 + 有限的功能 = 使用 JavaME。 请参阅 http://java.sun.com 以及 stackoverflow j2me 和 javame 标记。
In the current mobile space, largest installed base + limited functionality = use JavaME. See http://java.sun.com and the the stackoverflow j2me and javame tags.
最简单的方法可能是编写使用 蓝牙 API 的 MIDP 应用程序。以最少的努力获得最广泛的设备。
Easiest way might be to write MIDP application that uses Bluetooth API. That covers widest range of devices with least effort.