5.27作业

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.27作业相关的知识,希望对你有一定的参考价值。

package com.hanqi.myapplication;

import android.content.res.AssetManager;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Toast;

import java.io.FileOutputStream;
import java.io.InputStream;

public class Test3 extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_test3);
    }
    public void bt_OnClick(View v){

       try{
        AssetManager am =getAssets();
        InputStream is=am.open("p7.jpg");
           String path = getExternalFilesDir("text").getCanonicalPath();
           Toast.makeText(Test3.this, "path=" + path, Toast.LENGTH_LONG).show();
           FileOutputStream fos = new FileOutputStream(path+"/p8.jpg");
           byte[] b=new byte[1024];
           int i=0;

           while((i=is.read(b))>0){
              fos.write(b,0,i);

           }
           is.close();
           fos.close();


       }
       catch (Exception e){
           Toast.makeText(Test3.this, "path=" , Toast.LENGTH_LONG).show();
       }
    }
}

  

以上是关于5.27作业的主要内容,如果未能解决你的问题,请参考以下文章

5.27每日总结

5.27权限练习

《DSP using MATLAB》Problem 5.27

动态SQL基础概念复习(Javaweb作业5)

HTML5期末大作业:餐饮美食网站设计——咖啡(10页) HTML+CSS+JavaScript 学生DW网页设计作业成品 web课程设计网页规划与设计 咖啡网页设计 美食餐饮网页设计...(代码片段

5.27日记