Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String toHexString(String s) {
String str = "";
for (int i = 0; i < s.length(); ++i) {
char ch = s.charAt(i);
String s4 = Integer.toHexString(ch);
str = str + s4;
}
return str;
}
}