Loading...
понеділок, 12 травня 2014 р.

Java source code highlight on-line tools

Looking for java source core highlighting online tool. Now using this one: http://hilite.me
Code highlight example (HelloWorld.java):


this:
package com.akceptor.helloworld 
public class HelloWorld {
    /** 
    * This is comment 
    */ 
           public static void main(String[] args) {
               //Prints helloworld message 
               System.out.print("Hello, World \n"); 
          } 
}
becomes this:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
package com.akceptor.helloworld

public class HelloWorld { 
/**
* This is comment
*/
   public static void main(String[] args) { 
      //Prints helloworld message
      System.out.print("Hello, World \n");
   }
}

0 коментарі:

 
TOP