我的情况如下:我要开发一个外卖披萨店的POS应用程序,我有一台EPSON tm-t88iii收据打印机。
我做了:安装ESPON JavaPOS ADK,用SETUPPOS (HealthCheck工作正常)生成jpos.xml文件。
我的问题:当我尝试使用open方法连接到打印机时,我有以下异常,我不知道为什么:
" jpos。JposException: cannot connect to service with logicalName = tm88: Exception。message=无法创建服务实例。"
使用下面的代码:
POSPrinterControl19 ptr = (POSPrinterControl19) new POSPrinter();
try {
ptr.open("tm88");
} catch (JposException ex) {
System.err.println(ex.toString());
}
这是我的jpos.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE JposEntries PUBLIC "-//JavaPOS//DTD//EN"
"jpos/res/jcl.dtd">
<JposEntries>
<!--Saved by JavaPOS jpos.config/loader (JCL) version 2.2.0 on 23.06.14 21:59-->
<JposEntry logicalName="tm88">
<creation factoenter code hereryClass="jp.co.epson.uposcommon.util.EpsonJposServiceInstanceFactory" serviceClass="jp.co.epson.upos.core.v1_13_0001.pntr.T88IIIService"/>
<vendor name="SEIKO EPSON" url="http://www.epson.com"/>
<jpos category="POSPrinter" version="1.13"/>
<product description="EPSON TM-T88III Printer Device Service" name="EPSON Services for JavaPOS(TM) Standard" url="http://www.epson.com"/>
<!--Other non JavaPOS required property (mostly vendor properties and bus specific properties i.e. RS232 )-->
........
</JposEntry>
</JposEntries>
我确实觉得这很奇怪,因为EPSON ADK的HealthCheck工作得很好,而我的例子却不行。当然,我确实包括了从EPSON ADK到项目的所有库。有谁知道吗?
谢谢
我的规格:
操作系统:WINDOWS 8.1 64位IDE: netbeans连接到收据:Serial
您需要设置打印机:
System.setProperty(JposPropertiesConst.JPOS_POPULATOR_FILE_PROP_NAME, "jpos.xml");
和加载你的jpos.xml
使用route\jpos.xml
这个文件是由实用程序生成的。