Menu

ये दुनिया अगर मिल भी जाए तो क्या है

ये दुनिया अगर मिल भी जाए तो क्या है
ये  महलों, ये तख्तों, ये ताजों की दुनिया
ये इंसान के दुश्मन समाजों की दुनिया
ये दौलत के भूखे रवाजों की दुनिया
ये दुनिया अगर मिल भी जाए तो क्या है 

हर इक जिस्म घायल, हर इक रूह प्यासी
निगाहों में उलझन, दिलों में उदासी
ये दुनिया है या आलम--बदहवासी
ये दुनिया अगर मिल भी जाए तो क्या है 

यहाँ इक खिलौना है इसां की हस्ती
ये बस्ती हैं मुर्दा परस्तों  की बस्ती
यहाँ पर तो जीवन से है मौत सस्ती
ये दुनिया अगर मिल भी जाए तो क्या है 

जवानी भटकती हैं बदकार बन कर
जवान जिस्म सजते है बाज़ार बन कर
यहाँ प्यार होता है व्योपार  बन कर
ये दुनिया अगर मिल भी जाए तो क्या है 

ये दुनिया जहाँ आदमी कुछ नहीं है
वफ़ा कुछ नहीं, दोस्ती कुछ नहीं है
जहाँ प्यार की कद्र कुछ नहीं है 
ये दुनिया अगर मिल भी जाए तो क्या है 

जला दो इसे फूक डालो ये दुनिया
जला दो, जला दो, जला दो
जला दो इसे फूक डालो ये दुनिया
मेरे सामने से हटा लो ये दुनिया
तुम्हारी है तुम ही संभालो ये दुनिया
ये दुनिया अगर मिल भी जाए तो क्या है


--साहिर लुधयानवी
x
x

ख्वाब साबित करने पड़ते हैं

अगर ऐसा भी हो सकता
तुम्हारी नींद में सब ख्वाब अपने मुन्तक़िल करके
तुम्हें वह सब दिखा सकता
जो ख्वाबों में मैं अक्सर देखा करता हूं
ये हो सकता है अगर मुमकिन तुम्हें मालूम हो जाता
तुम्हे मैं ले गया था सरहदों के पार दिना मैं
तुम्हें वह घर दिखाया था जहां पैदा हुआ था मैं
जहां छत पर लगा सरयों का जंगला धूप से दिन भर मेरे आंगन में सतरंगी बनाता था मिटाता था
दिखाई थी तुम्हें वह खेतियां सरसों के दिनों में
कि जिस के पीले पीले फूल तुमको ख्वाब में कच्चे खिलाए थे
वही एक रास्ता था टालियो का जिस पर मीलों तक पारा करते थे
चूले सौंधे सावन के उसी की सौंधी खुशबू से महक उठी है आंखें
जब कभी उस ख्वाब से गुजरो
तुम्हें रोहतास का चलता हुआ भी तो दिखाया था
किले में बंद रहता था जो दिन भर रात को गांव में आ जाता था कहते हैं
तुम्हें काला से कालू वालों तक लेकर उड़ा हूं
मैं तुम्हें दरिया ए झेलम पे अजब मंजर दिखाए थे
जहां तरबूज पर लेटे लेटे हुए तीरक लड़के बैठे रहते थे
जहां तगड़ी से एक सरदार की पगड़ी पकड़कर मैं नहाता डुबकियां  लेता
मगर जब घोटा जाता तो मेरी नींद खुल जाती
मगर यह सिर्फ ख्वाबों में ही मुमकिन है
वहां जाने में अब दुश्वारियां हैं कुछ सियासत की
वतन अब भी वही है पर नहीं है मुल्क अब मेरा
वहां जाना अब तो दो दो सरकारों के दसयों दफ्तरों से शकल पर लगवा कर मुहरें
ख्वाब साबित करने पड़ते हैं


-- गुलज़ार 
x

Date and Time classes in Java

Today in this tutorial we will look how to work with date and times in Java programming.

Date and time is very important for every application and managing that date and time in your specified format, specified time zone and readable format as you want to get fetch from java program.

We are going to use some methods of LocalDate, LocalTime and LocalDateTime classes.

now() : This method return the current system date and time. If you call this now() using the LocalDate then it will give you date only not time stamp. But the same now if you call using the object of LocalTime then that will return time stamp only not date.

minusMonths() :  This method will reduce number of months from your given date. e.g. if your date is 2017-06-06 and when you will use minusMonths(2) then your date will become 2017-04-06.

plusMonths() : This method will add number of more months in your given date. e.g. if your date is 2017-04-06 and when you will use plusMonths(2) then your date will become 2017-06-06.

getDayOfWeek(): This method will return name of the day on a given time.

isBefore(): this getBefore method will return true or false by comparing the two given dates. e.g birthDate.isBefore(date.now()); here this will compare your birthdate is before current date or not. in the same way you can use the isAfter() as well.

Below is the complete example (ready to use) which you can just copy and paste  in your eclipse and execute to see how different Date methods are working in Java.


package abctest;

import java.time.LocalDateTime;
import java.time.LocalDate;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
import static java.time.temporal.TemporalAdjusters.*; // this import we have used to use next()import static java.time.DayOfWeek.*;
public class DateEx {
//here we have created three objects of LocalDate class. LocalDate now, bDate, today;
public static void main(String[] args) {
DateEx dateex=new DateEx();
// here we have created object local date(ld) from LocalDateTime.
LocalDateTime ld=LocalDateTime.now();
System.out.println(ld);
String locaDate=ld.format(DateTimeFormatter.ISO_DATE);
System.out.println(locaDate);
dateex.setNow(LocalDate.now());
dateex.dateMethods();
}
public void dateMethods(){
System.out.println("Date Methods:");
System.out.println("Date: " +getNow());
 //below line is to fetch the local time from your system.
System.out.println("Time: " +LocalTime.now());
//minusMonths() is to minus the number of months from a given date.
bDate=getNow().minusMonths(12);
//isBefore() method is used to compare the earlier date from two given dates.
System.out.println("Birthaday: "+bDate +" Is dbirthday before current date? "+bDate.isBefore(now));
//To get the name of the for a date.
System.out.println("He born on day: " +bDate.getDayOfWeek());
//On what date next Monday will be from a given date.
System.out.println("Next Monday will be on " +getNow().with(next(MONDAY)));
//From which era your date belongs from either BCE or AD.
System.out.println("Era: "+bDate.getEra());
}
public LocalDate getNow() {
return now;
}
public void setNow(LocalDate now) {
this.now = now;
}
}