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. supermole

    Casting a String to an Integer type

    Just a qucik note on casting... you cannot cast a String to an Integer, since you can only cast objects up or down the inheritance ladder. String and Integer are on the same level in the object hierarchy but on different branches, therefor casting is impossible. The example above uses a method...
  2. supermole

    Contructor vs. method

    no.
  3. supermole

    Can I hide the CMD Window?

    a way to reduce the cmd window that runs the java application is to run it from a batch file: ie: set CLASSPATH=%CLASSPATH%;myLib\someLibrary.jar start javaw com.mypackage.MyMainClass With that you still see briefly the DOS window appear when it starts the JRE but then it should vanish.
  4. supermole

    MQSeries PCF Examples

    Hi there, I'm currently struggeling to find useful examples of creating/deleting queues etc. using the MQSeries PCF Java API. Does anyone have some examples or links to them? Cheers, sm

Part and Inventory Search

Back
Top