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 SkipVought 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: *

  • Users: ryder14
  • Order by date
  1. ryder14

    Masters Degree?

    Hey, this should work as several Fortune 500 companies approached UMR about setting up this program two years ago. The implimentation has been somewhat irregular as any new program normally is. Most of the courses and instructers have been very good, and I have been trying to fill my general...
  2. ryder14

    char to integer conversion

    The rough work around would be to use your original cast to a char and add a line that recasts the char to another variable of the type String. oneByte = (char)fis.read(); strOneByte = (String)oneByte;
  3. ryder14

    Masters Degree?

    I am enrolled at the University of Missouri-Rolla in a new degree plan called BS in Information Science and Technology that is a hybrid of computer science and a business degree. In fact the required courses create a minor in business automaticly. This degree is envisioned as a middle management...
  4. ryder14

    char to integer conversion

    The problem you are running into is that Java has the primitive variable type char and an object reference variable type String. The Integer.parseInt() will work with a string of any length but not a char, so cast oneByte to a String instead of a char and this should work.

Part and Inventory Search

Back
Top