當前位置: 首頁>>代碼示例>>Java>>正文


Java StandardOpenOption.APPEND屬性代碼示例

本文整理匯總了Java中java.nio.file.StandardOpenOption.APPEND屬性的典型用法代碼示例。如果您正苦於以下問題:Java StandardOpenOption.APPEND屬性的具體用法?Java StandardOpenOption.APPEND怎麽用?Java StandardOpenOption.APPEND使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在java.nio.file.StandardOpenOption的用法示例。


在下文中一共展示了StandardOpenOption.APPEND屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: SelectieResultaatGbaBerichtWriter

/**
 * Default constructor.
 * @param path het pad waar het bestand wordt weggeschreven
 * @param originator de verzendende instantie
 * @param recipient de ontvangende instantie
 * @throws IOException in het geval er iets misgaat bij het wegschrijven van het bestand
 */
public SelectieResultaatGbaBerichtWriter(final Path path, final String originator, final String recipient) throws IOException {
    checkLength(originator, LENGTE_MAILBOXNUMMER);
    checkLength(recipient, LENGTE_MAILBOXNUMMER);

    this.originator = originator;
    this.recipient = recipient;

    final OpenOption[] openOptions = {StandardOpenOption.CREATE, StandardOpenOption.APPEND};
    out = new BufferedOutputStream(Files.newOutputStream(path, openOptions));

    schrijfStuurRecord();
}
 
開發者ID:MinBZK,項目名稱:OperatieBRP,代碼行數:19,代碼來源:SelectieResultaatGbaBerichtWriter.java

示例2: SelectieResultaatBerichtWriter

/**
 * @param path path
 * @throws IOException io fout
 */
private SelectieResultaatBerichtWriter(final Path path, final SelectieResultaatBericht bericht) throws IOException {
    final OpenOption[] openOptions = {StandardOpenOption.CREATE, StandardOpenOption.APPEND};
    out = new BufferedOutputStream(Files.newOutputStream(path, openOptions));
    outputStreamWriter = new OutputStreamWriter(out, StandardCharsets.UTF_8);
    try {
        writer = new BerichtWriter(outputStreamWriter);
        doStart(bericht);
    } catch (BerichtException e) {
        // Misschien een specifieke Exception.
        throw new IOException(e);
    }

}
 
開發者ID:MinBZK,項目名稱:OperatieBRP,代碼行數:17,代碼來源:SelectieResultaatBerichtWriter.java

示例3: getOpenOptions

static OpenOption[] getOpenOptions(boolean append) {
    OpenOption[] defaultOpenOptions = {StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING};
    OpenOption[] appendOpenOptions = {StandardOpenOption.APPEND};

    return append ? appendOpenOptions : defaultOpenOptions;
}
 
開發者ID:powsybl,項目名稱:powsybl-core,代碼行數:6,代碼來源:DataSourceUtil.java


注:本文中的java.nio.file.StandardOpenOption.APPEND屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。