Madhu's Blog
How to convert String to long in java
String str = "144295816000";
long l = Long.parseLong(str);
or
long l = Long.valueOf(str);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Python Basics How to check the version of Python interpreter mac terminal
Popular in last 30 days
Hibernate Unknown integral data type for ids
Hibernate Unknown integral data type for ids When starting my spring boot application @Entity public class PlugMillingData { p...
Eclipse Memory Analyzer - "Dominator tree not available. Delete indices and parse again."
When I try to open a heap dump I am getting the following error "Dominator tree not available. Delete indices and parse again." ...
JAXB: How can I unmarshal XML without namespaces
I need to figure out a way to deal with the following. Need to process a XML which is provided by different vendors the schema and struct...
No comments:
Post a Comment