jsp中print和write区别和共同点

 try {  
            PrintWriter pw = response.getWriter();  
              
            int x = 98;  
              
            pw.write(x);  
              
            pw.print(x);  
              
        } catch (IOException e) {  
            e.printStackTrace();  
        } 
try {
   PrintWriter pw = response.getWriter();

共同点:

     两者都不刷新页面,只在原来的页面写数据   
   int x = 98;
   
   pw.write(x);
   
   pw.print(x);
   
  } catch (IOException e) {
   e.printStackTrace();
  }

输出:b  98

最终都是重写了抽象类Writer里面的write方法
print方法可以将各种类型的数据转换成字符串的形式输出。重载的write方法只能输出字符、字符数组、字符串等与字符相关的数据。
查看一下源码(java.io.PrintWriter):

1:write方法:

  view plaincopy to clipboardprint?
 public void write(int c) {  
try {  
    synchronized (lock) {  
 ensureOpen();  
 out.write(c);  
    }  
}  
catch (InterruptedIOException x) {  
    Thread.currentThread().interrupt();  
}  
catch (IOException x) {  
    trouble = true;  
}  
   } 
  public void write(int c) {
 try {
     synchronized (lock) {
  ensureOpen();
  out.write(c);
     }
 }
 catch (InterruptedIOException x) {
     Thread.currentThread().interrupt();
 }
 catch (IOException x) {
     trouble = true;
 }
    }
 

2:print方法:

  view plaincopy to clipboardprint?
public void print(int i) {  
rite(String.valueOf(i));  
  } 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值