Suppose, there are many files that contains "CONTENT" you want to search, use the following command in the Linux terminal.
grep "CONTENT" *.*
Friday, September 16, 2011
Friday, September 9, 2011
Create Scheduler in Java
Some applications need to run on a scheduled time. This java application runs on every Sunday midnight.
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class ScheduleTest extends TimerTask {
public void run() {
System.out.println("Schedule working ");
//TODO
}
}
class Application {
public static void main(String[] args) {
Timer timer = new Timer();
Calendar date = Calendar.getInstance();
date.set(
Calendar.DAY_OF_WEEK,
Calendar.SUNDAY
);
date.set(Calendar.HOUR, 0);
date.set(Calendar.MINUTE, 0);
date.set(Calendar.SECOND, 0);
date.set(Calendar.MILLISECOND, 0);
// Schedule to run every Sunday in midnight
timer.schedule(
new ScheduleTest (),
date.getTime(),
1000 * 60 * 60 * 24 * 7
);
}
}
Tuesday, August 30, 2011
Conversion between signed & unsigned byte
Convert byte value from signed to unsigned
Use '&' operation with 0xFF as follows.
Suppose signed byte value is byt (-120,64,....).
byt & 0xFF
Above will convert signed to unsigned and return unsigned value.
Convert byte value from unsigned to signed
ByteBuffer byteBuff = ByteBuffer.allocate(4);
byteBuff.putInt(intValue);
by[i] = byteBuff.get(3);
Above code convert unsigned values to sign byte values.
Use '&' operation with 0xFF as follows.
Suppose signed byte value is byt (-120,64,....).
byt & 0xFF
Above will convert signed to unsigned and return unsigned value.
Convert byte value from unsigned to signed
ByteBuffer byteBuff = ByteBuffer.allocate(4);
byteBuff.putInt(intValue);
by[i] = byteBuff.get(3);
Above code convert unsigned values to sign byte values.
Sunday, August 21, 2011
How to get System information in windows
- Open command prompt
- Type "systeminfo" command
- Run the command
Thursday, August 11, 2011
Monday, August 8, 2011
Mysql set auto increment start value
In default, auto increment values are started in 0(zero). Suppose you, want to start value auto increment with 1234, use the following command after table creation.
ALTER TABLE TableName AUTO_INCREMENT=1234
ALTER TABLE TableName AUTO_INCREMENT=1234
Wednesday, July 20, 2011
Get last bash command in shell
Suppose you want to get previously used command without using up / down arrows,
Simply type !(command start char).
Example :-
If you want to get "ps -eaf|grep java", simply type !p in the bash shell.
NOTE :- This will return last executed command.
Simply type !(command start char).
Example :-
If you want to get "ps -eaf|grep java", simply type !p in the bash shell.
NOTE :- This will return last executed command.
Subscribe to:
Posts (Atom)