- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for WriterUtil (0.07 sec)
-
src/main/java/org/codelibs/core/io/WriterUtil.java
import org.codelibs.core.exception.IORuntimeException; /** * Utility class for {@link Writer} operations. * * @author koichik */ public abstract class WriterUtil { /** * Do not instantiate. */ protected WriterUtil() { } /** * Creates a {@link Writer} to output to a stream with the specified encoding. * * @param os the stream (must not be {@literal null})
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
assertArgumentNotNull("in", in); assertArgumentNotNull("out", out); assertArgumentNotEmpty("encoding", encoding); final Writer os = WriterUtil.create(wrap(out), encoding); return copyInternal(wrap(in), os); } // //////////////////////////////////////////////////////////////// // from Reader to Writer // /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/PropertiesUtil.java
assertArgumentNotNull("props", props); assertArgumentNotNull("file", file); assertArgumentNotEmpty("encoding", encoding); final Writer writer = WriterUtil.create(file, encoding); try { props.store(writer, comments); } catch (final IOException e) { throw new IORuntimeException(e); } finally {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.9K bytes - Viewed (0)