Transporting jar file by Midlet..send via bluetooth/infrared/??? to another

Lovely HelloO!
How can i transfer my programm via itself?
my idea is about a menu item that is                     
                         | |
[send to...] ===>     | bluetooth |
| infrared |
| ??? |
                         | not matter |
by this option, user has this ability that offers my application to anpother!
I saw it on a Midlet but i lose it :(
Do you have any idea about it?
I think that i must copy a (.jar) file via installation and copy it to other handset,am i right?

please can any one replay me :(

Similar Messages

  • How do I send files from my IMAC via bluetooth to my ne Ipad.  They will not "pair" but they are connected and discoverable.  I send a file from Imac snow leopard OS X 10.6 to the ipad but the failure message says the ipad does not have the ncessary servr

    How do I send files from my IMAC via bluetooth to my new Ipad?  They will not "pair" but they are connected and discoverable.  I send a file from Imac snow leopard OS X 10.6 to the ipadusing bluetooth,  but the failure message says the ipad does not have the necessary services.  What are these?  Do I neeed to have iphoto and ms word to send pix and .doc files?

    File Sharing over Bluetooth is not a feature of iOS devices. iOS does not include the required Bluetooth profiles to allow this. You cannot add this feature, so you may as well stop trying.

  • I can't send file from my macbook via bluetooth

    I have this problem, I can't send files from my Macbook with bluetooth. When I click on send a file nothing happens, as if I didn't clck at all. I can still receive files though. It was working last week and I haven't changed my settings since. I checked and everything was still enable. I installed Mackeeper not long ago, I scanned the computer and made a cleanup shortly before it stopped working, I dont know if it could have been the cleanup, but it's troublesome since that was how I transfered my music on my mp3 player. I made a software update too and it didn't change a thing. Please help!! I don't know what to do!

    I guess I'm stumpted.  If the iMessage server is telling you that the recipient's email address/phone number is not registered with iMessage when in fact they are, somehow it's not looking it up correctly (as it is when you try from your phone).  Signing out of the account in preferences, then signing back in is about the only thing I can think of to "restart" iMessage.  I suppose you could try signing out again, then restart your Mac and sign back in.  If you didn't restart your Mac after you signed out of iCloud, you could try that too.  If none of that works, you'll probably have to contact Apple support for assistance.

  • How to I copy files to the Iphone via bluetooth

    Can any help me im trying to send music files form my mobile phone via bluetooth to my Iphone and it says sending faild. The mobil phone is pared to my Iphone and i do not know what to do any help will be mutch appricated

    You cannot. The iPhone supports ONLY the headset and hands-free Bluetooth profiles. No file transfer, no music output, etc.

  • N8 - store photo send via bluetooth ?

    If i send a photo from an other cellphone to my n8 via bluetooth, i have no option of saving it to phone memory. So, i have to keep the messege if i want to view the photo. Is there any way of saving photos to phone memory without having to connect to a pc ?
    thanks

    Have just tested this, from both my N95 and a phone from another manufacturer. The recieved file is saved automatically by my N8, the message showing the folder and filename. The attachments show the message and the file manager after deleting the message.
    N8-00 pc059C9F6 Belle
    808 PureView pc059P6W5
    Attachments:
    scr000039.jpg ‏18 KB
    scr000040.jpg ‏39 KB

  • Loading jar files at execution time via URLClassLoader

    Hello�All,
    I'm�making�a�Java�SQL�Client.�I�have�practicaly�all�basic�work�done,�now�I'm�trying�to�improve�it.
    One�thing�I�want�it�to�do�is�to�allow�the�user�to�specify�new�drivers�and�to�use�them�to�make�new�connections.�To�do�this�I�have�this�class:�
    public�class�DriverFinder�extends�URLClassLoader{
    ����private�JarFile�jarFile�=�null;
    ����
    ����private�Vector�drivers�=�new�Vector();
    ����
    ����public�DriverFinder(String�jarName)�throws�Exception{
    ��������super(new�URL[]{�new�URL("jar",�"",�"file:"�+�new�File(jarName).getAbsolutePath()�+"!/")�},�ClassLoader.getSystemClassLoader());
    ��������jarFile�=�new�JarFile(new�File(jarName));
    ��������
    ��������/*
    ��������System.out.println("-->"�+�System.getProperty("java.class.path"));
    ��������System.setProperty("java.class.path",�System.getProperty("java.class.path")+File.pathSeparator+jarName);
    ��������System.out.println("-->"�+�System.getProperty("java.class.path"));
    ��������*/
    ��������
    ��������Enumeration�enumeration�=�jarFile.entries();
    ��������while(enumeration.hasMoreElements()){
    ������������String�className�=�((ZipEntry)enumeration.nextElement()).getName();
    ������������if(className.endsWith(".class")){
    ����������������className�=�className.substring(0,�className.length()-6);
    ����������������if(className.indexOf("Driver")!=-1)System.out.println(className);
    ����������������
    ����������������try{
    ��������������������Class�classe�=�loadClass(className,�true);
    ��������������������Class[]�interfaces�=�classe.getInterfaces();
    ��������������������for(int�i=0;�i<interfaces.length;�i++){
    ������������������������if(interfaces.getName().equals("java.sql.Driver")){
    ����������������������������drivers.add(classe);
    ������������������������}
    ��������������������}
    ��������������������Class�superclasse�=�classe.getSuperclass();
    ��������������������interfaces�=�superclasse.getInterfaces();
    ��������������������for(int�i=0;�i<interfaces.length;�i++){
    ������������������������if(interfaces[i].getName().equals("java.sql.Driver")){
    ����������������������������drivers.add(classe);
    ������������������������}
    ��������������������}
    ����������������}catch(NoClassDefFoundError�e){
    ����������������}catch(Exception�e){}
    ������������}
    ��������}
    ����}
    ����
    ����public�Enumeration�getDrivers(){
    ��������return�drivers.elements();
    ����}
    ����
    ����public�String�getJarFileName(){
    ��������return�jarFile.getName();
    ����}
    ����
    ����public�static�void�main(String[]�args)�throws�Exception{
    ��������DriverFinder�df�=�new�DriverFinder("D:/Classes/db2java.zip");
    ��������System.out.println("jar:�"�+�df.getJarFileName());
    ��������Enumeration�enumeration�=�df.getDrivers();
    ��������while(enumeration.hasMoreElements()){
    ������������Class�classe�=�(Class)enumeration.nextElement();
    ������������System.out.println(classe.getName());
    ��������}
    ����}
    It�loads�a�jar�and�searches�it�looking�for�drivers�(classes�implementing�directly�or�indirectly�interface�java.sql.Driver)�At�the�end�of�the�execution�I�have�found�all�drivers�in�the�jar�file.
    The�main�application�loads�jar�files�from�an�XML�file�and�instantiates�one�DriverFinder�for�each�jar�file.�The�problem�is�at�execution�time,�it�finds�the�drivers�and�i�think�loads�it�by�issuing�this�statement�(Class�classe�=�loadClass(className,�true);),�but�what�i�think�is�not�what�is�happening...�the�execution�of�my�code�throws�this�exception
    java.lang.ClassNotFoundException:�com.ibm.as400.access.AS400JDBCDriver
    ��������at�java.net.URLClassLoader$1.run(URLClassLoader.java:198)
    ��������at�java.security.AccessController.doPrivileged(Native�Method)
    ��������at�java.net.URLClassLoader.findClass(URLClassLoader.java:186)
    ��������at�java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    ��������at�sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265)
    ��������at�java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    ��������at�java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
    ��������at�java.lang.Class.forName0(Native�Method)
    ��������at�java.lang.Class.forName(Class.java:140)
    ��������at�com.marmots.database.DB.<init>(DB.java:44)
    ��������at�com.marmots.dbreplicator.DBReplicatorConfigHelper.carregaConfiguracio(DBReplicatorConfigHelper.java:296)
    ��������at�com.marmots.dbreplicator.DBReplicatorConfigHelper.<init>(DBReplicatorConfigHelper.java:74)
    ��������at�com.marmots.dbreplicator.DBReplicatorAdmin.<init>(DBReplicatorAdmin.java:115)
    ��������at�com.marmots.dbreplicator.DBReplicatorAdmin.main(DBReplicatorAdmin.java:93)
    Driver�file�is�not�in�the�classpath�!!!�
    I�have�tried�also�(as�you�can�see�in�comented�lines)�to�update�System�property�java.class.path�by�adding�the�path�to�the�jar�but�neither...
    I'm�sure�I'm�making�a/some�mistake/s...�can�you�help�me?
    Thanks�in�advice,
    (if�there�is�some�incorrect�word�or�expression�excuse�me)

    Sorry i have tried to format the code, but it has changed   to �... sorry read this one...
    Hello All,
    I'm making a Java SQL Client. I have practicaly all basic work done, now I'm trying to improve it.
    One thing I want it to do is to allow the user to specify new drivers and to use them to make new connections. To do this I have this class:
    public class DriverFinder extends URLClassLoader{
    private JarFile jarFile = null;
    private Vector drivers = new Vector();
    public DriverFinder(String jarName) throws Exception{
    super(new URL[]{ new URL("jar", "", "file:" + new File(jarName).getAbsolutePath() +"!/") }, ClassLoader.getSystemClassLoader());
    jarFile = new JarFile(new File(jarName));
    System.out.println("-->" + System.getProperty("java.class.path"));
    System.setProperty("java.class.path", System.getProperty("java.class.path")+File.pathSeparator+jarName);
    System.out.println("-->" + System.getProperty("java.class.path"));
    Enumeration enumeration = jarFile.entries();
    while(enumeration.hasMoreElements()){
    String className = ((ZipEntry)enumeration.nextElement()).getName();
    if(className.endsWith(".class")){
    className = className.substring(0, className.length()-6);
    if(className.indexOf("Driver")!=-1)System.out.println(className);
    try{
    Class classe = loadClass(className, true);
    Class[] interfaces = classe.getInterfaces();
    for(int i=0; i<interfaces.length; i++){
    if(interfaces.getName().equals("java.sql.Driver")){
    drivers.add(classe);
    Class superclasse = classe.getSuperclass();
    interfaces = superclasse.getInterfaces();
    for(int i=0; i<interfaces.length; i++){
    if(interfaces[i].getName().equals("java.sql.Driver")){
    drivers.add(classe);
    }catch(NoClassDefFoundError e){
    }catch(Exception e){}
    public Enumeration getDrivers(){
    return drivers.elements();
    public String getJarFileName(){
    return jarFile.getName();
    public static void main(String[] args) throws Exception{
    DriverFinder df = new DriverFinder("D:/Classes/db2java.zip");
    System.out.println("jar: " + df.getJarFileName());
    Enumeration enumeration = df.getDrivers();
    while(enumeration.hasMoreElements()){
    Class classe = (Class)enumeration.nextElement();
    System.out.println(classe.getName());
    It loads a jar and searches it looking for drivers (classes implementing directly or indirectly interface java.sql.Driver) At the end of the execution I have found all drivers in the jar file.
    The main application loads jar files from an XML file and instantiates one DriverFinder for each jar file. The problem is at execution time, it finds the drivers and i think loads it by issuing this statement (Class classe = loadClass(className, true);), but what i think is not what is happening... the execution of my code throws this exception
    java.lang.ClassNotFoundException: com.ibm.as400.access.AS400JDBCDriver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:198)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:140)
    at com.marmots.database.DB.<init>(DB.java:44)
    at com.marmots.dbreplicator.DBReplicatorConfigHelper.carregaConfiguracio(DBReplicatorConfigHelper.java:296)
    at com.marmots.dbreplicator.DBReplicatorConfigHelper.<init>(DBReplicatorConfigHelper.java:74)
    at com.marmots.dbreplicator.DBReplicatorAdmin.<init>(DBReplicatorAdmin.java:115)
    at com.marmots.dbreplicator.DBReplicatorAdmin.main(DBReplicatorAdmin.java:93)
    Driver file is not in the classpath !!!
    I have tried also (as you can see in comented lines) to update System property java.class.path by adding the path to the jar but neither...
    I'm sure I'm making a/some mistake/s... can you help me?
    Thanks in advice,
    (if there is some incorrect word or expression excuse me)

  • HT4053 how do i send via bluetooth pictures taken by my iphone 4s to other celphones?

    help
    no idea how to share pics via bluetooth to other cellphones

    Peizoandme wrote:
    Unless you have a third party app, you cannot. iOS devices are only designed to use Bluetooth to connect to peripheral devices such as keyboard, mouse or your car.
    iOS devices do not support bluetooth mice.

  • Not able to send files to my Mac via bluetooth.

    Hey i have mac os x 10.5, i am not able to sen files to my mac from my blackberry 8520. I have paired my bb and mac but when i try to send files from my bb it says "Failed to find service".
    Please help.
    Thanks.

    Hi
    go to system preference
    and go to sharing
    enable blue tooth sharing
    Hope it helps
    LH

  • Error trying to write to a measurement file and then send via gmail.vi

    So as the title says, I have a VI which is writing to a tdms file, and I want to send the file by gmail once the program has completed it's run. I downloaded gmail.vi and am integrating it into my existing code. Both my original code and the gmail VI work fine on their own, but when I try to have the combined VI send the data file by email, I get the error message that I've attached.
    Basically, it seems like the .tdms data file is in use by the measurement code, and I need to know how to free it up so that the gmail code can attach and send it.
    I've attached the main code as well as my modified gmail VI, so hopefully someone can take a look at tell me what I'm missing.
    Any help is much appreciate!
    Attachments:
    Error.PNG ‏19 KB
    PID Controller - Cleaned Up.vi ‏239 KB
    Email Alert.vi ‏19 KB

    While I can't view all of your code because it is missing several SubVIs, I have a good idea of what you are trying to do. I believe the culprit is the "Write to measurement file" express VI. Near as I can tell the original reference to the TDMS file is being held open inside the express VI. Here's a good general rule for using Express VI's: when you see them, RUN THE OTHER WAY! I say because there is almost always a significant amount of code in there that is unnecessary, In this case, you simply need the Open TDMS file, Write to TDMS, Close file functions; you do not need all of the extra code that is in the express VI's.
    <edit> P.S. I hope the username/password in Email alert.vi is a placeholder otherwise you just gave every idiot with access to LabVIEW your username and password to the account.
    Charles Chickering
    Architecture is art with rules.
    ...and the rules are more like guidelines

  • How send file via bluetooth iphone 5

    please help me, I;am using new Iphone 5, i can't send via bluetooth.
    regards
    Eko

    The iphone doesn't support file transfer by bluetooth

  • Send vcf files to mobile phone over bluetooth using Automator?

    I've gotten the whole phonebook (187 entries) off a Nokia 6600 and I need to put it into my new Samsung D600. Only the thing won't accept a multi-card cfs file. It only imports the first contact, ignores the rest.
    Now I've exported each of the 187 contacts as a separate cfs file on my Macintosh HD, and I am looking for a way to select all of them and choose Send via Bluetooth..., then select the Samsung D600 and do the job.
    Or do I have to do that with each one of them independently, throught the Send File command up on the Bluetooth menulet? It's tedious. But I opened Automator and didn't see any commands related to Bluetooth.
    Many thanks, as always.

    To the best of my knowledge (and I've done a fair bit of searching...) Samsungs don't live too happily next to Apples. Apparently their implementation of SyncML isn't compatible with the current versions of iSync, iCal, AddressBook and what-have-you. Hence the need to dismantle a perfectly backed up phonebook from a Nokia 6600 into hundreds of individual vcf files and then throw them one by one the Samsung's way. Pity it needs to confirm each and every transfer individually before it proceeds to the next.
    Still, I suppose it's better and faster than typing everything back in.
    I would, however, like to have an Automator action do all that for me. Anyone else?

  • Toshiba AT300-101 file transfer via Bluetooth

    I am trying to transfer files from my AT300-101 tablet to my PC via Bluetooth but have been unable to.
    I have managed to pair and connect it
    on another note anyone know when the TOSHIBA AT300 Stand Case might be available to buy.
    Thanks

    >on another note anyone know when the TOSHIBA AT300 Stand Case might be available to buy.
    I googled around and already found one online shop who provides the TOSHIBA AT300 Stand Case
    >I am trying to transfer files from my AT300-101 tablet to my PC via Bluetooth but have been unable to.
    Did you try the Android App called: "Bluetooth File Transfer
    This allows you to send the files via Bluetooth directly to another smartphone or tabled without transferring this files to PC firstly.

  • .WMV files sent via Bluetooth

    I am trying to send a .WVM file from my computer via Bluetooth to my N73.
    The message is recvd but when I trry to open it i get the message "Unknown File Format"
    Any ideas how to get 'round the problem to open the message.

    "MP4" is an ambiguous term. For exact audio and video codecs, as well as bitrates, resolutions see the table here:
    http://www.forum.nokia.com/main/resources/technologies/audiovideo/av_features/FN_vid_table.html

  • Connecting up a mobile phone to a computer (via bluetooth?)

    Hi,
    I'm looking for the best way to connect up a mobile phone to a nearby computer (wirelessly) so that they are able to communicate with each other.
    Would bluetooth be the best way?
    Would it be as simple as buying a bluetooth dongle for the computer, and writing a java application on the computer which accepts connections, and then writing a j2me application for the phone which connects to the computer? How would you find out what address the mobile phone needed to connect to?
    Also, is there a better way of doing this without the need for a j2me application on the phone, such as a phones built in web browser? If I did this how would the computer be able to send information over to the phone telling it what to display? Would it be a case of creating an index.html on the computer and the phone would be able to display that?
    Thanks for the help

    {color:#000080}Bluetooth looks good for your purpose. At the phone end, you would need a MIDlet to access an inbuilt bluetooth serial port using the btspp: protocol. At the PC end, your software will connect to the serial port corresponding to your bluetooth dongle. The two can communicate using a client-server relationship.
    That is, of course, the bare-bones outline of quite a lot of stuff. Device pairing has to be done manually, since there is no method to do this in j2me. On many handsets, BT has to be launched before running a MIDlet that requires its services. All bluetooth dongles are not created equal, neither are all bluetooth managers. So you will have to deal with a number of specifics as you progress. I am not sure on this, but I think there are a few phone models that do have bluetooth but no serial port profile, so that's another point to check out.
    AFAIK, the browser on a mobile phone cannot open local files nor access content via bluetooth -- html pages can only be viewed via the internet.
    You will need to use the javax.bluetooth and, possibly, javax.obex packages.{color}
    http://java.sun.com/javame/reference/apis/jsr082/index.html?index-all.html{color:#000080}
    If you have further queries regarding the j2me part of your endeavour, you might get better response in the CLDC and MIDP forum{color}
    http://forum.java.sun.com/forum.jspa?forumID=76{color:#000080}
    db{color}

  • Error while compiling Web Dynpro program due to missing JAR files

    Hi Experts,
    I am getting error message while compiling Web Dynpro program. The erring lines are as below:
              Message message = new MimeMessage(session);
              try {
                   message.setFrom(new InternetAddress(fromMailId));
                   message.addRecipient(
                        Message.RecipientType.TO,
                        new InternetAddress(toMailId));
                   message.setSubject(mailSubject);
                   message.setText(mailBody);
                   message.setHeader("X-Mailer", "E-Mail");
                   message.setSentDate(new Date());
                   Transport.send(message);
    The error messages are:
    Message.ReceipientType can not be resolved
    The method send(Message) is undefined for the type Transport
    The method setFrom(InternetAddress) is undefined for the type Message
    The method setHeader(String, String) is undefined for the type MessageThe method setSentDate(Date) is undefined for the type Message
    The method setSubject(String) is undefined for the type Message
    The method setText(String) is undefined for the type Message
    Type mismatch: cannot convert from MimeMessage to Message
    Can you please help me in resolving the issue. It seems that some API is missing. I believe if some one can tell me the name of JAR file / API then I will be able to sort out the issue. I will add these JAR file in my program.
    Thanks,
    S

    HI Stuart,
    you are missing the jar files required for sending mail in java
    Installing JavaMail
    You will need the latest version of JavaMail (Version 1.2) available here:
    http://java.sun.com/products/javamail/
    Download and unzip the file, in the newly created top level JavaMail directory you will find a number of jar files,
    these need adding to your classpath.
    To do this in Eclipse, right click on your project in the tree view, select properties, select the libraries tab.
    Now click the 'Add external jars' button, navigate to your JavaMail directory and click on the jars.
    The tutorial also makes use of the Java Activation Framework, which is available here:
    http://java.sun.com/products/javabeans/glasgow/jaf.html
    Instalation of JAF is identical to JavaMail
    activation.jar / mail.jar are 2 distinct names i remember rest you will get above
    P.S: close the question to assist other users narrow the search and find solutions
    Message was edited by:
            Armin Reichert

Maybe you are looking for

  • Microsoft Remote Desktop displaying "Connection Reset by Peer"

    Server Side Configuration: RDS Gateway Server: MS Server 2008 R2 RDS Web Server: MS Server 2012 R2 Standard RDS Server: MS Server 2008 R2 Client Side Configurations: Dell OptiPlex 9020: MS Windows 7 Enterprise with MS RDC [will refer to as DELL] Appl

  • How to tune the Insert statement?

    Hi , I am using 10.2.0.4.0 version of oracle.      i am having one insert statement , which comes almost all the time in the TOP of my AWR elapsed time section.      And its somewhat similar to as below. Query: INSERT INTO a (InvoicePK, CheckPK) SELE

  • Why iTunes is not openning ?

    Yesterday the same thing happened but it resolved after a time, it wasn't working on my pc neither on my iPad, and now it happened again, why iTunes app store is not opening or even logging in ? Is the problem in my device or just theirs? How to reso

  • SQL Server 2012 Edition required for my case??

    Hi, I am setting up a SharePoint 2013 BI environment with minimal servers. Below is the configuration: 1) WFE1 - Front End Server Role 2) APP1 - Application Server Role with SSRS 2012, SSAS in SharePoint mode.    SQL Server 2012 BI edition is used he

  • How to Debug the Outbound IDOC

    Dear SDN Members, How to debug the outbound idoc please. Thanks in advance Yerukala Setty