1.在Android应用中启动:

//url"finereportv9://"  "com.fr.finereportv9://"
String url = "finereportv9://";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
//启动模式
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
startActivity(intent);