Thursday, May 29, 2014

Kill a Process running on a specific port in windows OS (i tested in windows 8.1)

1 . Find which process is running on the specific port with the below command

netstat -ano

2 . Then take the PID (which in my case is in the last column) , then run the following command

taskkill  /F /PID <<pid>>

once you run the above command and if the process killed successfully then you will see the below message

SUCCESS: The process with PID <<pid>> has been terminated.


* <<>pid>>  represents the pid which is using the specific port number.

Sunday, May 18, 2014

JAVA NIO , BUFFER , LIMIT and POSITION

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

public class FileNIO {

public static void main(String[] args) throws IOException {
try {
FileOutputStream fout = new FileOutputStream("nio.txt");

FileChannel fc = fout.getChannel();

ByteBuffer bb = ByteBuffer.allocate(10);

bb.clear();

for (int i = 0; i < 10; i++) {

System.out.println("space left in the buffer "+bb.limit());
System.out.println("next element where the data need to be put :"+bb.position());

bb.put((byte) 'A');

}

System.out.println("space left in the buffer "+bb.limit());
System.out.println("next element where the data need to be put :"+bb.position());


bb.flip();

fc.write(bb);

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

}




will print the following output



space left in the buffer 10
next element where the data need to be put :0
space left in the buffer 10
next element where the data need to be put :1
space left in the buffer 10
next element where the data need to be put :2
space left in the buffer 10
next element where the data need to be put :3
space left in the buffer 10
next element where the data need to be put :4
space left in the buffer 10
next element where the data need to be put :5
space left in the buffer 10
next element where the data need to be put :6
space left in the buffer 10
next element where the data need to be put :7
space left in the buffer 10
next element where the data need to be put :8
space left in the buffer 10
next element where the data need to be put :9
space left in the buffer 10
next element where the data need to be put :10

Thursday, May 15, 2014

JSTL Cookie

To access the cookie using the jstl in jsp

{cookie.cookieName.value}  will return the value