Inserting spaces at Starting Left & Ending Right of the Number & String using Java

Here is the Java code.
  1. import java.io.BufferedReader;  
  2. import java.io.InputStreamReader;  
  3. class Demo   
  4. {  
  5.     public static void main(String[] arg) throws Exception   
  6.     {  
  7.         BufferedReader in = new BufferedReader(new InputStreamReader(System. in ));  
  8.         System.out.println("1-Left insertion with space at the 'start' of ''Number''");  
  9.         System.out.println("2-Left insertion with space at the 'start' of ''String''");  
  10.         System.out.println("3-Right insertion with space at the 'end' of ''Number''");  
  11.         System.out.println("4-Right insertion with space at the 'end' of ''String''");  
  12.         System.out.println("5-Right insertion with zeros at the 'end' of ''String''");  
  13.         System.out.println();  
  14.         System.out.print("Select any option: ");  
  15.         int select = Integer.parseInt( in .readLine());  
  16.         switch (select)   
  17.         {  
  18.             case 1:  
  19.                 System.out.println("After insertion: " + ">" + padLeft(14314) + "<");  
  20.                 break;  
  21.             case 2:  
  22.                 String s1 = padLeft("Excellent"14);  
  23.                 System.out.println("After insertion: " + ">" + s1 + "<");  
  24.                 break;  
  25.             case 3:  
  26.                 System.out.println("After insertion: " + ">" + padRight(732114) + "<");  
  27.                 break;  
  28.             case 4:  
  29.                 String s2 = padRight("Awesome"14);  
  30.                 System.out.println("After insertion: " + ">" + s2 + "<");  
  31.                 break;  
  32.             case 5:  
  33.                 String s3 = padRight1("Shift"14);  
  34.                 System.out.println("After insertion: " + ">" + s3.replace(" ""0") + "<");  
  35.                 break;  
  36.             default:  
  37.                 System.out.println("Wrong choice");  
  38.         }  
  39.     }  
  40.     public static String padLeft(int s, int n)   
  41.     {  
  42.         return String.format("%0$" + n + "d", s);  
  43.     }  
  44.     public static String padLeft(String s, int n)   
  45.     {  
  46.         return String.format("%0$" + n + "s", s);  
  47.     }  
  48.     public static String padRight(int s, int n)   
  49.     {  
  50.         return String.format("%0$-" + n + "d", s);  
  51.     }  
  52.     public static String padRight(String s, int n)   
  53.     {  
  54.         return String.format("%0$-" + n + "s", s);  
  55.     }  
  56.     public static String padRight1(String s, int n)   
  57.     {  
  58.         return String.format("%0$-" + n + "s", s);  
  59.     }  
  60. }  
Thank you, keep learning and sharing