mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
add opt
This commit is contained in:
@@ -984,6 +984,19 @@ public class IoUtil {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 将多部分内容写到流中
|
||||
*
|
||||
* @param out 输出流
|
||||
* @param isCloseOut 写入完毕是否关闭输出流
|
||||
* @param obj 写入的对象内容
|
||||
* @throws IORuntimeException IO异常
|
||||
* @since 5.3.3
|
||||
*/
|
||||
public static void writeObj(OutputStream out, boolean isCloseOut, Serializable obj) throws IORuntimeException {
|
||||
writeObjects(out, isCloseOut, obj);
|
||||
}
|
||||
|
||||
/**
|
||||
* 将多部分内容写到流中
|
||||
*
|
||||
|
Reference in New Issue
Block a user