烃类蒸汽转化炉的炉膛截面评级程序REFORM-3PC.V7.0+FRNC-5PC.V8.0 通用加热炉工艺计算软件KBC Petro-SIM Suite v4.0 SP2-ISO 1CD(炼油工艺流程模拟软件)FRNC-5PC.V8.0 通用加热炉工艺计算软件CAESAR II 2013 R1 v....
分类:
其他好文 时间:
2014-08-30 11:04:29
阅读次数:
296
请在MultiSimPreferenceActivity.java 作如下的修改, 验证之后请反馈结果。
共修改2 处。
修改1: 函数 isChecked()
private boolean isChecked(String preference,int sim_id){
SharedPreferences prefs = PreferenceManager.ge...
分类:
移动开发 时间:
2014-08-28 18:07:05
阅读次数:
261
直接上代码:
/**
* 获取SIM卡运营商
*
* @param context
* @return
*/
public static String getOperators(Context context) {
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Conte...
分类:
移动开发 时间:
2014-08-27 23:31:18
阅读次数:
355
注意考虑以下数据:123 123.0;0.123 .123;00.123 0.123;代码:#include#include#include#includeusing namespace std;char a[100000],b[100000];char x[200000];string sim(c...
分类:
其他好文 时间:
2014-08-27 21:50:38
阅读次数:
171
MTK平台上,所有插入到手机中的SIM卡的信息都会存储在数据库com.android.providers.telephony中。原始的数据库图表 1 SimInfo数据表的结构从上图示中,我们可以看到siminfo表的大致结构,包含字段:_id, display_name, name_source,...
分类:
其他好文 时间:
2014-08-27 16:02:47
阅读次数:
321
ios7测试ok[CTSIMSupportGetSIMStatus() isEqualToString:kCTSIMSupportSIMStatusNotInserted]可以判断是否插入了sim卡。前提是把下面的代码随便复制到一个头文件里面,然后引入CoreTelephony.framework即...
分类:
其他好文 时间:
2014-08-26 22:38:56
阅读次数:
235
struct topic_info_t { int topic_id; float topic_pr;};float sim(const vector& query_info,const vector& adwords){ vector::iterator it1 = query_info.begi...
分类:
其他好文 时间:
2014-08-25 16:59:24
阅读次数:
149
$postStr = $GLOBALS[‘HTTP_RAW_POST_DATA‘]; 表示将用户端发送的数据保存到变量$postStr中,由于微信端发送的是XML的数据格式,使用$_POST无法解析,所以使用$GLOBALS[‘HTTP_RAW_POST_DATA‘]获取 $postObj = sim...
分类:
微信 时间:
2014-08-24 20:58:03
阅读次数:
421
TextView tv=(TextView)findViewById(R.id.tv);
TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
// 获取SIM卡的IMSI码
String imsi = telManag...
分类:
移动开发 时间:
2014-08-21 11:32:02
阅读次数:
237
TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); /** 获取SIM卡的IMSI码 * SIM卡唯一标识:IMSI 国际移动用户识别码...
分类:
其他好文 时间:
2014-08-18 18:24:32
阅读次数:
294