* Implement zero argument writeln() method to write a newline sequence.
This commit is contained in:
parent
ad8b7e11ec
commit
1ec82737bf
1 changed files with 7 additions and 0 deletions
|
@ -186,6 +186,13 @@ public class ResponseBean implements Serializable {
|
||||||
res.writeln(str);
|
res.writeln(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Write a platform dependent newline sequence to response buffer.
|
||||||
|
*/
|
||||||
|
public void writeln() {
|
||||||
|
res.writeln();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Directly write a byte array to the response buffer without any transformation.
|
* Directly write a byte array to the response buffer without any transformation.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue