- 浏览: 61152 次
- 性别:
- 来自: 贵阳
-
文章分类
最新评论
-
feisuzhu:
Don't roll your own.这个是铁律。楼主要是学 ...
AES加解密算法(使用Base64做转码以及辅助加密) -
osacar:
这里DES还是AES???
AES加解密算法(使用Base64做转码以及辅助加密) -
1336224635:
着些不都是16进制表示的颜色吗?android 对颜色有要求吗 ...
android--color.xml
本程序能通过调用android自带的照相机,返回图片到imageview上,并能读取内存卡保存到内存卡上,还能把该图片转换成字符串,以便能上传到服务器。
需要用到的架包是commons-codec-1.5.jar。
<--layout布局-->
<--activity-->
<--权限-->
需要用到的架包是commons-codec-1.5.jar。
<--layout布局-->
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#FFD3D7DF" > <LinearLayout android:id="@+id/takePicturePhone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="10dip" android:layout_marginLeft="10dip" android:layout_marginRight="10dip" android:layout_marginTop="10dip" android:background="@drawable/bg_frame" android:gravity="center_vertical" android:orientation="vertical" android:paddingBottom="2dip" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="10dip" > <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <ImageButton android:id="@+id/takePhone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/takepicture" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="154dp" > <ImageView android:id="@+id/preview" android:layout_width="wrap_content" android:layout_height="92dp" /> </LinearLayout> </LinearLayout> </LinearLayout>
<--activity-->
package zhang.xue.yi; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import org.apache.commons.codec.binary.Base64; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Bundle; import android.os.Environment; import android.provider.MediaStore; import android.view.MotionEvent; import android.view.View; import android.view.View.OnTouchListener; import android.widget.Button; import android.widget.ImageButton; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.Toast; /** * 拍照 * * @author Mr.Z * @time 2012-5-16 * */ public class TakePhotoActivity extends Activity { private Context context = TakePhotoActivity.this; private ImageButton btnTakePhone; private String path; private ImageView imageView; private Bitmap[] bmps = new Bitmap[6]; private Bundle bundle; private LinearLayout takePicturePhone = null; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.setContentView(R.layout.locationapp); takePicturePhone = (LinearLayout) findViewById(R.id.takePicturePhone); useTakePicture(); } /** * 照相信息采集 */ private void useTakePicture() { imageView = (ImageView) this.findViewById(R.id.preview); btnTakePhone = (ImageButton) findViewById(R.id.takePhone); btnTakePhone.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_DOWN) { // 更改为按下时的背景图片 bmps[0] = BitmapFactory.decodeResource(getResources(), R.drawable.takepicture2); btnTakePhone.setImageBitmap(bmps[0]); } else if (event.getAction() == MotionEvent.ACTION_UP) { // 改为抬起时的图片 bmps[1] = BitmapFactory.decodeResource(getResources(), R.drawable.takepicture); btnTakePhone.setImageBitmap(bmps[1]); } return false; } }); btnTakePhone.setOnClickListener(new Button.OnClickListener() { public void onClick(View arg0) { Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, 1); } }); } /** *回显系统照片 */ protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (resultCode == Activity.RESULT_OK) { String sdStatus = Environment.getExternalStorageState(); if (!sdStatus.equals(Environment.MEDIA_MOUNTED)) { // 检测sd是否可用 Toast.makeText(context, "SD卡不存在!", 1000); return; } bundle = data.getExtras(); Bitmap bitmap = (Bitmap) bundle.get("data");// 获取相机返回的数据,并转换为Bitmap图片格式 FileOutputStream b = null; File file = new File("/sdcard/channel/"); file.mkdirs();// 创建文件夹 path = "/sdcard/channel/" + formatDatetime(new Date(), "yyyyMMddHHmmss") + ".jpg"; try { System.out.println("path:" + path); b = new FileOutputStream(path); bitmap.compress(Bitmap.CompressFormat.JPEG, 100, b);// 把数据写入文件 getImageBinary(); } catch (FileNotFoundException e) { e.printStackTrace(); } finally { try { b.flush(); b.close(); } catch (IOException e) { e.printStackTrace(); } } this.imageView.setImageBitmap(bitmap);// 将图片显示在ImageView里 } } /** * 图片转换成字符串[BASE64] * * @return */ public String getImageBinary() { System.out.println("path--->" + path); try { FileInputStream fis = new FileInputStream(path); ByteArrayOutputStream baos = new ByteArrayOutputStream(); byte[] buffer = new byte[8192]; int count = 0; while ((count = fis.read(buffer)) >= 0) { baos.write(buffer, 0, count); } String uploadBuffer = new String(Base64.encodeBase64(baos.toByteArray())); fis.close(); System.out.println("图片信息转换成字符串为:---->" + uploadBuffer); return uploadBuffer; } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return null; } /** * 根据指定的日期格式生成日期时间串 * * @param format 日期格式,如yyyyMMdd * @return dateTimeString */ public static String formatDatetime(Date date, String format) { DateFormat df = new SimpleDateFormat(format); return df.format(date); } }
<--权限-->
<uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
- TakePhoto.zip (426.7 KB)
- 下载次数: 54
发表评论
-
ContentProvider
2013-04-19 17:12 1105ContentProvider是安卓平台中,在不同应用程序之间 ... -
sqlite使用
2013-04-19 16:52 1264import android.content.Contex ... -
AsyncTask异步下载图片
2013-02-23 10:30 1189这个例子是利用AsyncTask异步下载图片,下载时先将网络图 ... -
我的Android小应用
2012-12-05 12:00 845工作之余,做了一款小android应用,是关于移动业务查询的( ... -
通过百度API获取经纬度
2012-06-29 15:43 1519第一步,先要导入百度API的架包libBMapApiEngin ... -
移动设备开发中WebService的详解
2012-06-17 11:15 1752看到有很多朋友对WebService还不是很了解,在此就详细的 ... -
Android 定位的三种方式
2012-06-11 17:17 1176// 声明LocationManager对象 ... -
android手机获取gps和基站的经纬度地址
2012-05-21 11:02 2107<--界面--> <?xml versi ... -
android上的MD5和RSA的加解密
2012-04-18 20:03 2826import java.io.UnsupportedEnc ... -
android--加载本地联系人
2012-04-09 10:30 1785首先先建布局文件,界面很简单,就是一个搜索框和下面的联系人列表 ... -
android--Handler的使用
2012-04-09 09:56 1811Handler基本概念: Handler主要用 ... -
android应用-创建快捷方式
2012-04-06 14:32 1534我们开发一款软件后,如果手机装的软件过多,去翻的话会很难翻的, ... -
APK的发布
2012-04-05 16:51 13181数字签名 Android系统 ... -
android应用-在线版本升级
2012-04-05 15:42 1679首先配置服务器有关的地址:(如下) public stat ... -
模拟器和真机连接tomcat的区别
2012-04-05 15:39 1222//系统要连接的WebService接口地址 private ...
相关推荐
此外,如果需要上传图片到服务器,可能还会涉及到图片的压缩和转换为Base64字符串。`Bitmap.compress(Bitmap.CompressFormat, int, OutputStream)`可以用来压缩图片,`Base64.encodeToString(byte[], int)`则用于将...
- 图片数据通常是Base64编码的字符串,Unity中接收到数据后,解码并转换成Texture2D对象,赋值给RawImage组件显示。 4. **安全与性能优化**: - 当用户选择或剪裁图片后,最好使用异步加载和处理图片,避免阻塞...
Android 的 App Market 模式,软件开发者获得 7 成收入, 3 成用于系统维护。难点在于位置营销。 设备商通过卖设备、内置特色应用来获得盈利。也可以兼职专业软件开发者进行赢利。 Google 自身通过基于统一平台为...
9.31、把文件内容读出到一个字符串 245 9.32、扫描WIFI热点演示实例教程 246 9.33、调用GOOGLE搜索 249 9.34、调用浏览器 载入某网址 249 9.35、获取 IP地址 249 9.36、从输入流中获取数据并以字节数组返回 250 9.37...
先将Bitmap转换为字节数组或Base64字符串,然后作为请求的body发送。 7. **用户体验**: 在实现这些功能时,还要考虑用户体验,例如提供清晰的用户指导,显示加载进度,处理异常情况,并确保界面响应流畅。 总的...
使用 file_put_contents 函数可以将 base64 编码字符串保存为图片文件。 通过这个功能,我们可以实现微信拍摄上传照片的功能,并将其应用于实际项目中。例如,在社交媒体应用中,我们可以使用这个功能来实现用户...