JVC announced the SR-HD1500 and SR-HD1250 Blu-ray / Hard Drive combo recorder decks at the CEDIA 2009. These are high performance professional combo decks with a built-in Blu-ray recorder and an internal hard disk drive for easy duplication and disc authoring without a PC.These devices are not designed to record TV programs to hard drive...
Browse » Home » Archives for September 2009
convert string date format to other
import java.util.*;import java.text.*;public class StringToDate { public static void main(String[] args) { try { String str_date="10-Sep-2009"; DateFormat formatter,formatter2 ; Date date ; formatter = new SimpleDateFormat("dd-MMM-yyyy"); date = (Date)formatter.parse(str_date); String formattedDate = formatter.format(date);System.out.println("dd-MMM-yyyy date is ==>"+formattedDate);Date date1 = formatter.parse(formattedDate);formatter...
Subscribe to:
Posts (Atom)