fuadhamidov
Programmer
hi everybody
i can't understand why it does not print "\t" and "\n". the output is "Test1 Test2". it should be
my code is bellow
i can't understand why it does not print "\t" and "\n". the output is "Test1 Test2". it should be
Code:
Test1
Test2
Code:
<%@page import="java.io.*" %><%
response.setContentType("contentType='text/plain;'");
PrintWriter pw = response.getWriter();
pw.println( "Test1" );
pw.println();
pw.println( "\n\t\t" + "Test2" );
pw.flush();
pw.close();%>