Home > Archive > Java Help > August 2005 > SonyEricsson Bluetooth DEMO
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
SonyEricsson Bluetooth DEMO
|
|
| bokiteam@ms21.hinet.net 2005-08-29, 3:57 am |
| Hi All,
I have install the SEMC WTK2.2, but I can't
build the bluetooth DEMO app, I have try two pc to install it, both
didn't work.
here is the error message:
=============================
C:\SonyEricsson\J2ME_SDK\PC_Emulation\WT
K2\apps\BluetoothDemo\src\example\blueto
oth\demo\BTImageClient.java:454:
cannot find symbol
symbol : class BTServiceSearcher
location: class example.bluetooth.demo.BTImageClient
BTServiceSearcher searcher = new BTServiceSearcher();
^
C:\SonyEricsson\J2ME_SDK\PC_Emulation\WT
K2\apps\BluetoothDemo\src\example\blueto
oth\demo\BTImageClient.java:454:
cannot find symbol
symbol : class BTServiceSearcher
location: class example.bluetooth.demo.BTImageClient
BTServiceSearcher searcher = new BTServiceSearcher();
^
2 errors
com.sun.kvem.ktools.ExecutionException
=============================
Could you please advice?
Best regards,
Boki.
| |
| Roedy Green 2005-08-29, 7:02 pm |
| On 29 Aug 2005 00:47:15 -0700, bokiteam@ms21.hinet.net wrote or quoted
:
>BTServiceSearcher
This is generic advice for any missing class.
JavaC does not know what a BTServiceSearcher is.
First make sure you are spelling it correctly, including case, and
that your import for it is correct, including case.
Now go find out where in really is. Use Winzip or similar tool to
sniff about in plausible jars to find it. Or use a tool like Funduc
Search and Replace that will do a global search of your disk for you
including inside jars and zips.
Let's presume you find it. Now make sure that jar is on the classpath
or in the ext directory. See http://mindprod.com/jgloss/classpath.html
Let's presume you don't find it. Get on google and find out where you
can download a copy and put it on the classpath.
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.
| |
| bokiteam@ms21.hinet.net 2005-08-29, 9:56 pm |
| Hi Great Guy,
Thanks, I fixed it. :-D
Best regards,
Boki.
|
|
|
|
|