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 tryParseLong(String text, long def) {
long ret = 0;
try {
ret = Long.parseLong(text);
} catch (Exception e) {
ret = def;
}
return ret;
}
}