How to read data from URL in java code examples Get link Facebook X Pinterest Email Other Apps - June 27, 2010 public String getURLData(String realPath, String actionUrl){ StringBuffer buf=new StringBuffer(); try{ URL myurl = new URL(actionUrl); URLConnection con = myurl.openConnection(); BufferedReader in = new BufferedReader( new InputStreamReader( ... Read more
How to convert date in own format java code example Get link Facebook X Pinterest Email Other Apps - June 27, 2010 public static String getFormatedDate(String dateFormate, Date date){ try{ DateFormat dft = new SimpleDateFormat(dateFormate); return dft.format(date); }catch(Exception e){ e.printStackTrace(); } return null; } Read more