Java Path File Content WriteContentsToFile(String planeTextFilePath, byte[] encryptedData)

Here you can find the source of WriteContentsToFile(String planeTextFilePath, byte[] encryptedData)

Description

Write Contents To File

License

Apache License

Declaration

public static void WriteContentsToFile(String planeTextFilePath, byte[] encryptedData) throws IOException 

Method Source Code

//package com.java2s;
/*//from ww w  .  j  a  v  a 2 s.  co m
 * Copyright 2017 ozkr16.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.IOException;
import java.io.PrintWriter;
import java.nio.file.Files;
import java.nio.file.Paths;

public class Main {
    public static void WriteContentsToFile(String planeTextFilePath, byte[] encryptedData) throws IOException {
        Files.write(Paths.get(planeTextFilePath), encryptedData);
    }

    public static void WriteContentsToFile(String planeTextFilePath, String messageData) throws IOException {
        try (PrintWriter out = new PrintWriter(planeTextFilePath)) {
            out.println(messageData);
        }
    }
}

Related

  1. readContent(Path file)
  2. saveByteArrayToFile(byte[] content, Path targetPath)
  3. saveFile(String workspacePath, byte[] content)
  4. slurpFileContent(Path path)
  5. write2File(String contents, Path outputPath)
  6. writeFile(final String content, final String path)
  7. writeFile(Path file, String content)
  8. writeFile(Path filePath, String content)
  9. writeFile(Path path, String content)