有一个Android应用程序,Passwallet,能够解释为苹果应用程序Passbook(https://play.google.com/store/apps/details?id=com.attidomobile.passwallet)所需的pkpass文件
我想知道如何阅读pkpass文件。
Pkpass文件似乎是包含json文件中所有信息的zip文件。 pkpass文件是否有默认结构?如果是这样的话是什么?什么是将其导入Android应用程序的好方法?
对于想知道如何阅读pkpass文件内容的人,请参考以下代码:
我使用pkpass文件的intent过滤器设置此活动
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="application/vnd-com.apple.pkpass"
android:scheme="content" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="application/vnd.apple.pkpass"
android:scheme="content" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="application/vnd-com.apple.pkpass"
android:scheme="file" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="application/vnd.apple.pkpass"
android:scheme="file" />
</intent-filter>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = getIntent();
Uri uri = intent.getData();
String scheme = uri.getScheme();
if(ContentResolver.SCHEME_CONTENT.equals(scheme)) {
try {
InputStream attachment = getContentResolver().openInputStream(uri);
handleZipInput(attachment);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
else {
String path = uri.getEncodedPath();
try {
FileInputStream fis = new FileInputStream(path);
handleZipInput(fis);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
private void handleZipInput(InputStream in) {
try {
ZipInputStream zis = new ZipInputStream(in);
ZipEntry entry;
while((entry = zis.getNextEntry()) != null) {
String filename = entry.getName();
if(filename.equals("pass.json")) {
StringBuilder s = new StringBuilder();
int read = 0;
byte[] buffer = new byte[1024];
while((read = zis.read(buffer, 0, 1024)) >= 0)
s.append(new String(buffer, 0, read));
JSONObject pass = new JSONObject(s.toString());
break;
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
答案 0 :(得分:20)
您可以从here下载.pkpass捆绑包的完整规范。传递内容存储在名为pass.json的JSON文件中。 .pkpass包是一个zip文件,包含pass.json,pass图像,可选的locale文件和清单文件。
清单需要使用Apple颁发的Pass ID证书进行签名。但是对于Android或任何其他第三方应用程序,可以从pass.json和捆绑的图像中读取构建传递所需的所有内容。