Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ztopher

    Recursion and files

    Thank you! When I run this code from a GUI, using JFileChooser to select start dir it does not run properly. When the function is called a second time no subdirs are found. Even though I know that sub dirs exist. When I use a test stub without the GUI i works OK. Very Strange, Maybe it is some...
  2. ztopher

    Recursion and files

    Hello I need some help with a recursive function that is supposed to read dirs from an arbitrary location from the file system. When I call the function the second time from within the function no subdirs are found, I don’t think the file filter is called. Please help me out. My code looks...
  3. ztopher

    Casting a String to an Integer type

    If I understand you correctly you would like to cast a String to an int. This could be done by using the static method pasreInt() int the class Integer this could look something like this. String i = "1"; int value = Integer.parseInt(i); /Ztopovich
  4. ztopher

    J2ME and mail

    I found answers to my own question and thought I might as well post it here, if anyone else have the same question. There is one open source API for J2ME devices this API is called mail4me and could be downloaded from: http://mail4me.enhydra.org/ I havent tried it out yet but it seems to be...
  5. ztopher

    J2ME and mail

    Greetings I have just started to try out J2ME and the following question a raised. Is there any supported API for sending mail with J2ME? /Cheers Ztopher
  6. ztopher

    Add btspp support to CLDC profile(J2ME question)

    Hi all I am about to implement the JABWT spec (Java API for Bluetooth ) I dont quite get how to make implement new protocols ontop of CLDC. JABWT will be "placed" ontop of this configuration. Does anyone know how to add support for a protocol on top of the CLDC profile. Do I need to...

Part and Inventory Search

Back
Top