ios You app information could not be saved. Try again. If the problem persists, contact us
大概意思:你的app信息没被保存...
刚开始以为忽略了一些选择,各种检查,百度 google...最后找到答案说 修改 plist里的Bundle display name 改为应用的名字, 不要...
分类:
移动开发 时间:
2014-10-01 21:53:41
阅读次数:
234
题目地址:POJ 1703
种类并查集水题。
代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int bin[600000], rank[600000];
int f...
分类:
其他好文 时间:
2014-10-01 21:37:32
阅读次数:
232
Abstract. When you are familiar with OpenCASCADE on Windows, you should try it on Linux operating system, because of Debian is also open source like O...
分类:
其他好文 时间:
2014-10-01 18:27:31
阅读次数:
254
public void AsyncWriteDataBase() { var spName = ""; while (true) { try { ...
分类:
数据库 时间:
2014-09-30 23:16:20
阅读次数:
202
以前提到异常处理,马上就想到加try-catch. 没错,这种应激反应是对的。关键是怎么加?如果想为每一个方法都加异常处理,输出相同格式的异常信息,应该怎么做呢?难道是为每一个方法加一个try-catch, 然后输出相同格式的异常信息?假如有一天,我们输出处理异常的方式变了或者异常信息格式变了,我们...
分类:
其他好文 时间:
2014-09-30 21:09:40
阅读次数:
161
class Temperature(Object): coefficients={'c':(1.0,0.0,-273.15),'f':(1.8,-273.15,32.0),'r':(1.8,0.0,0.0)} def __init__(self,**kwargs): try...
分类:
其他好文 时间:
2014-09-30 14:35:49
阅读次数:
209
String path = "notepad.exe"; //(C:\Program Files\Tencent\QQ\Bin\qq.exe)try {Runtime runtime = Runtime.getRuntime();Process process = runtime.exec(path...
分类:
编程语言 时间:
2014-09-30 09:27:52
阅读次数:
180
1. 画空心矩形(其他的空心圆之类的东西也是使用的)rect.beginFill(0,1);rect.drawRect(0,0,480,480);rect.drawRect(3.5,3.5,473,473);rect.endFill();2.try...catch 能不用就不用,这个会影响As3程序...
分类:
其他好文 时间:
2014-09-29 23:53:21
阅读次数:
208
hibernate
一、 hibernate介绍
hibernate其实就是ormapping框架,此框架的作用就是简单话数据库的操作。
hibernate就是将用户提交的代码,参照持久化类配置文件,转换成sql语句。
1、 JDBC的优/缺点:
1. 缺点:
1、 查询代码特别繁琐。
2、 重复性代码多,频繁的try,catch。
3、 没有对数据的缓存(就是将先将数据放入内存中...
分类:
系统相关 时间:
2014-09-29 17:44:21
阅读次数:
493
#!/usr/bin/pythonimportreimportosimporturllibtry:importsimplejsonexceptImportError:os.popen(‘yuminstallpython-simplejson-y‘)try:importpycurlexceptImportError:os.popen(‘yuminstallpython-pycurl-y‘)defbuffer_line(monitor_log):buf=open("/etc/sae/rdc_buffer.txt"..
分类:
其他好文 时间:
2014-09-29 16:20:41
阅读次数:
244