Related Examples
  1. printWriter write5 Example
  2. printWriter write4 Example
  3. printWriter write3 Example
  4. printWriter write2 Example
  5. printWriter write1 Example
  6. printWriter print6 Example
  7. printWriter print5 Example
  8. printWriter print4 Example
  9. printWriter print3 Example
  10. printWriter print2 Example
  11. printWriter print1 Example
  12. printWriter format1 Example
  13. printWriter format2 Example
  14. printWriter checkError Example
  15. printWriter append3 Example
  16. printWriter append2 Example
  17. printWriter append1 Example
  18. printWriter rename Example
  19. PrintWriter printf Example
  20. PrintWriter printf Example
  21. PrintWriter write Example
  22. PrintWriter write Example
  23. PrintWriter write Example
  24. PrintWriter write Example
  25. PrintWriter write Example
  26. PrintWriter println Example
  27. PrintWriter println Example
  28. PrintWriter println Example
  29. PrintWriter println Example
  30. PrintWriter println Example
  31. PrintWriter println Example
  32. PrintWriter println Example
  33. PrintWriter println Example
  34. PrintWriter println Example
  35. PrintWriter format Example
  36. PrintWriter format Example
  37. PrintWriter println Example
  38. PrintWriter print Example
  39. PrintWriter print Example
  40. PrintWriter print Example
  41. PrintWriter print Example
  42. PrintWriter print Example
  43. PrintWriter print Example
  44. PrintWriter print Example
  45. PrintWriter print Example
  46. PrintWriter print Example
  47. PrintWriter flush Example
  48. PrintWriter close Example
  49. PrintWriter checkError Example
  50. PrintWriter append Example
  51. PrintWriter append Example
  52. PrintWriter append Example
  53. Java Class PrintWriter, Java PrintWriter Methods, Java PrintWriter Functions,PrintWriter Examples Java

View All Examples
 

printWriter append3 Example

printWriter class append example. This example shows you how to use append method.


PrintWriter class append example.method results part of the char sequence as per defined indexes.class FileOutputStream used as parameter inside the constructor of PrintWriter object is writing data to the abstract pathname associated file.

Here is the code:-
/**
 * @Program uses append method to generate subsequence of char 
 * values as per mentioned indexes.  
 * pathname file;  
 * Append3.java 
 * Author:-RoseIndia Team
 * Date:-5-july-2008
 */

import java.io.FileOutputStream;
import java.io.OutputStream;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.OutputStream;
import java.io.File;

public class Append3 {
  public static void main(String args[]) throws IOException {
    File multi = new File("c:\Desktop\sadhna.txt");
    System.out.println(multi.createNewFile());

    PrintWriter dimensional = new PrintWriter(new FileOutputStream(multi));
    char[] array = '#''m''i''n''d''#' };
    char[] array1 = '#''o''v''e''r''#' };
    char[] array2 = '#''m''a''t''t''e''r''#' };

    String knight_mare = new String(array);
    String heaven = new String(array1);
    String hell = new String(array2);

    dimensional.append(knight_mare, 15);
    dimensional.print(" ");
    dimensional.append(heaven, 15);
    dimensional.print(" ");
    dimensional.append(hell, 17);

    dimensional.close();
  }
}

Output of the program:-
Result is generated on the specified abstract pathname file and not on the console

mind over matter

Post Comment
Name:
E-mail:
Contact no :
Comments:
  Refresh Image
Verify Image:
 
 
Your Comment's
 
 
 

HOME | COPYRIGHT | CONTACT US