Friday, December 3, 2010
Thursday, December 2, 2010
Monday, November 8, 2010
Tuesday, October 5, 2010
Friday, August 20, 2010
Tuesday, August 10, 2010
HOW TO CAST BOOLEAN TO STRING IN JAVA PROGRAMMING
It is simple just create class from Boolean1 and write this code and save .java extention and run it.
public class Boolean1{
public static void main(String[] args){
boolean b = true;
String s = new Boolean(b).toString();
System.out.println("String is:"+ s);
}
}
public class Boolean1{
public static void main(String[] args){
boolean b = true;
String s = new Boolean(b).toString();
System.out.println("String is:"+ s);
}
}
Thursday, July 8, 2010
how to install pg_admin3 on debian
you can install easy postgres Sql on debian
just go on terminal and search postgres version
by following command
#aptitude search pgadmin
And select version
then run follow command
# aptitude install pgadmin3
and press enter
just go on terminal and search postgres version
by following command
#aptitude search pgadmin
And select version
then run follow command
# aptitude install pgadmin3
and press enter
How to install mysql on debian
if you want to install mysql on debian linux so following this step.
step 1. open terminal and run following command
first search mysql on terminal by command
#aptitude search mysql
and select following link
#mysql-admin
#mysql-client-5.0
#mysql-server-5.0
#mysql-query-browser
after select run this command
#aptitude install mysql-admin mysql-client-5.0 mysql-server-5.0 mysql-query-browser
and press enter
step 1. open terminal and run following command
first search mysql on terminal by command
#aptitude search mysql
and select following link
#mysql-admin
#mysql-client-5.0
#mysql-server-5.0
#mysql-query-browser
after select run this command
#aptitude install mysql-admin mysql-client-5.0 mysql-server-5.0 mysql-query-browser
and press enter
Subscribe to:
Posts (Atom)
How to find middle node of LinkedList without using extra memory in java
To find the middle node of a LinkedList without using extra memory in Java, you can use the "tortoise and hare" algorithm. This al...
-
public class ReverseArrayWithoutExtraMemory { public static void main(String[] args) { int arr[] = {1,2,3,4,5,6}; int swapArray[] =...
-
1) List Interface Implementation public interface List<T extends Comparable<T>> { public Node<T> getMi...
-
function data_change(field) { var check = true; var value = field.value; //get characters //check that all ch...