Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Open Source License
public class Main {
public static long parseInt5CharHex(String data) {
long value = Long.parseLong(data, 16);
if (value > 0x7FFFF) {
value -= 0x100000L;
}
return value;
}
}