Android Open Source - PlayTogether File Helper






From Project

Back to project page PlayTogether.

License

The source code is released under:

This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...

If you think the Android project PlayTogether listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.rockylearnstodevelop.playtogether;
//from w w w  .ja v  a 2s  .  com
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

import org.apache.commons.io.IOUtils;

import android.content.Context;
import android.graphics.Bitmap;
import android.net.Uri;
import android.util.Log;

public class FileHelper {
  
  public static final String TAG = FileHelper.class.getSimpleName();
  
  public static final int SHORT_SIDE_TARGET = 1280;
  
  public static byte[] getByteArrayFromFile(Context context, Uri uri) {
    byte[] fileBytes = null;
        InputStream inStream = null;
        ByteArrayOutputStream outStream = null;
        
        if (uri.getScheme().equals("content")) {
          try {
            inStream = context.getContentResolver().openInputStream(uri);
            outStream = new ByteArrayOutputStream();
            
            byte[] bytesFromFile = new byte[1024*1024]; // buffer size (1 MB)
            int bytesRead = inStream.read(bytesFromFile);
            while (bytesRead != -1) {
              outStream.write(bytesFromFile, 0, bytesRead);
              bytesRead = inStream.read(bytesFromFile);
            }
            
            fileBytes = outStream.toByteArray();
          }
          catch (IOException e) {
            Log.e(TAG, e.getMessage());
          }
          finally {
            try {
              inStream.close();
              outStream.close();
            }
            catch (IOException e) { /*( Intentionally blank */ }
          }
        }
        else {
          try {
            File file = new File(uri.getPath());
            FileInputStream fileInput = new FileInputStream(file);
            fileBytes = IOUtils.toByteArray(fileInput);
          }
          catch (IOException e) {
            Log.e(TAG, e.getMessage());
          }
         }
        
        return fileBytes;
  }
  
  public static byte[] reduceImageForUpload(byte[] imageData) {
    Bitmap bitmap = ImageResizer.resizeImageMaintainAspectRatio(imageData, SHORT_SIDE_TARGET);
    
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    bitmap.compress(Bitmap.CompressFormat.PNG, 100, outputStream);
    byte[] reducedData = outputStream.toByteArray();
    try {
      outputStream.close();
    }
    catch (IOException e) {
      // Intentionally blank
    }
    
    return reducedData;
  }

  public static String getFileName(Context context, Uri uri, String fileType) {
    String fileName = "uploaded_file.";
    
    if (fileType.equals("image")) {
      fileName += "png";
    }
    else {
      // For video, we want to get the actual file extension
      if (uri.getScheme().equals("content")) {
        // do it using the mime type
        String mimeType = context.getContentResolver().getType(uri);
        int slashIndex = mimeType.indexOf("/");
        String fileExtension = mimeType.substring(slashIndex + 1);
        fileName += fileExtension;
      }
      else {
        fileName = uri.getLastPathSegment();
      }
    }
    
    return fileName;
  }
}




Java Source Code List

com.rockylearnstodevelop.playtogether.ActivitiesFragment.java
com.rockylearnstodevelop.playtogether.ActivityAdapter.java
com.rockylearnstodevelop.playtogether.FileHelper.java
com.rockylearnstodevelop.playtogether.ImageResizer.java
com.rockylearnstodevelop.playtogether.LoginActivity.java
com.rockylearnstodevelop.playtogether.MainActivity.java
com.rockylearnstodevelop.playtogether.MatchActivity.java
com.rockylearnstodevelop.playtogether.NoMatchActivity.java
com.rockylearnstodevelop.playtogether.ParseConstants.java
com.rockylearnstodevelop.playtogether.PlayWithMe2Application.java
com.rockylearnstodevelop.playtogether.RequestAdapter.java
com.rockylearnstodevelop.playtogether.RequestFragment.java
com.rockylearnstodevelop.playtogether.SectionsPagerAdapter.java
com.rockylearnstodevelop.playtogether.SignupActivity.java
com.rockylearnstodevelop.playtogether.UserInfoActivity.java
com.rockylearnstodevelop.playtogether.WannaPlayFragment.java