Search:

Type: Posts; User: JavaPF

Search: Search took 0.08 seconds.

  1. Re: Converting Hexadecimal to Char

    Here is an example:



    String fileContents = 004e

    if(fileContents.equals("004e")){
    System.out.println("E")
    }
  2. Re: Converting Hexadecimal to Char

    Hello nathanernest and welcome to the Java Programming Forums :D

    To convert the fileContents String to its corresponding character value, you will probably need a load of 'if' statements.

    Can...
Results 1 to 2 of 2