本文介绍了Java中的Palm数据库(PDB)文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有人编写过任何用Java读写Palm数据库(PDB)文件的课程? (我的意思是在服务器上,而不是Palm设备本身。)我试图谷歌,但我得到的是蛋白质数据库参考。

Has anybody written any classes for reading and writing Palm Database (PDB) files in Java? (I mean on a server, not on the Palm device itself.) I tried to google, but all I got were Protein Data Bank references.

我写了一个Perl程序这是使用Palm :: PDB.pm,但我想把它变成一个GWT应用程序的servlet。

I wrote a Perl program that does it using Palm::PDB.pm, but I want to turn it into a servlet for a GWT app.

推荐答案

上的jSyncManager项目位于LGPL下,包括要阅读的课程并编写PDB文件 - 在源代码中查看jSyncManager / API / Protocol / Util / DLPDatabase.java。看起来您需要的核心代码可以通过一点点努力与库的其余部分隔离。

The jSyncManager project at http://www.jsyncmanager.org/ is under the LGPL and includes classes to read and write PDB files -- look in jSyncManager/API/Protocol/Util/DLPDatabase.java in its source code. It looks like the core code you need from this could be isolated from the rest of the library with a little effort.

这篇关于Java中的Palm数据库(PDB)文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 12:38