view com/hjg/pngj/PngHelperInternal2.java @ 4:3f418d4451d6 pngj

add pngj
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 Apr 2016 09:52:58 +0200
parents
children
line wrap: on
line source

package ar.com.hjg.pngj;

import java.io.File;
import java.io.OutputStream;

/**
 * For organization purposes, this class is the onlt that uses classes not in GAE (Google App Engine) white list
 * <p>
 * You should not use this class in GAE
 */
final class PngHelperInternal2 {

  /**
   * WARNING: this uses FileOutputStream which is not allowed in GoogleAppEngine
   * 
   * In GAE, dont use this
   * 
   * @param f
   * @param allowoverwrite
   * @return
   */
  static OutputStream ostreamFromFile(File f, boolean allowoverwrite) {
    java.io.FileOutputStream os = null; // this will fail in GAE!
    if (f.exists() && !allowoverwrite)
      throw new PngjOutputException("File already exists: " + f);
    try {
      os = new java.io.FileOutputStream(f);
    } catch (Exception e) {
      throw new PngjInputException("Could not open for write" + f, e);
    }
    return os;
  }
}