Skip to content

Instantly share code, notes, and snippets.

View AlexWang18's full-sized avatar
💪

Alex Wang AlexWang18

💪
View GitHub Profile
@AlexWang18
AlexWang18 / java-snippets.md
Created October 22, 2020 22:18 — forked from thomd/java-snippets.md
Java code snippets

Java Snippets

Converting Strings to int and int to String

String a = String.valueOf(2); 
int i = Integer.parseInt(a);  

Convert String to Date