I am a newbie and coming with problem about storing a QR image from a URL (which generates the QR image)to android phone. I ran the code and it does not show any error but I cannot find the .png file anywhere in the phone storage system. Kinda strange. It feels like nothing is happening.
I have two questions: 1. What is wrong in the code that I am not getting the QR image from the url in android? 2. Exactly what shall I modify in the code to store the image in the external storage. ** I have given the external storage permission and internet permission in manifest.xml file.
package com.android.payment;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.Spinner;
import android.widget.Toast;
import com.android.wallet.R;
import java.io.*;
import java.net.*;
public class Mpayment extends Activity{
private Button mpay;
public void onCreate(Bundle SavedInstanceState) {
super.onCreate(SavedInstanceState);
setContentView(R.layout.mpayment);
mpay = (Button)findViewById(R.id.btn_pay);
mpay.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String card_no="MECARD:N:s;TEL:0736716926;NOTE:20;";
//Generate a QR Code image and save it to file "sample.png"
generate(card_no, "png", "sample.png");
// Toast.makeText(null, card_no, Toast.LENGTH_SHORT).show();
private void generate(String content, String format, String path) {
// TODO Auto-generated method stub
{
try
{
String encoded = URLEncoder.encode(content, "UTF-8");
String url = "http://www.esponce.com/api/v3/generate?content=" + encoded + "&format=" + format;
BufferedInputStream ins = new BufferedInputStream(new URL(url).openStream());
FileOutputStream fos = new FileOutputStream(path);
BufferedOutputStream bos = new BufferedOutputStream(fos, 1024);
int size = 0;
byte data[] = new byte[1024];
while ((size = ins.read(data, 0, 1024)) != -1)
{
bos.write(data, 0, size);
}
bos.close();
fos.close();
ins.close();
}
catch (Exception e)
{
}
}
}
});
}
}
*