错误提示:Apple Mach-O Linker Error
红色提示:
Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang failed with exit code 1
这种提示往往让我们不知道哪儿出错了,给出的提示不是很明显。
发生这种错误的原因通常是因为两个子工程中存在同名类造...
分类:
移动开发 时间:
2014-07-22 23:05:33
阅读次数:
469
去年11月份开始来到这家新公司,做视频监控的
而我负责做WEB观看端,之前是说视频播放用flash来做,然后界面的话直接用原生的HTML
后来就温习了CSS js jq ajax...... 还有dwr
也做了一个类似的小Demo出来,当然没什么功能,只能播放rtmp视频流而已
后来今年回来说都用Flex做,到现在3 、4个月了,功能差不多实现了
还差一个视频截图加一个视频录像的功能,昨...
分类:
其他好文 时间:
2014-07-22 23:05:32
阅读次数:
701
1、创建Dao接口。
package com.ljh.jasonnews.server.dao;
import java.sql.Connection;
public interface Dao {
public Connection getConnection() throws DaoException;
}
2、创建BaseDao类,实现Dao接口,主要完成数据库的打开与关闭...
分类:
数据库 时间:
2014-07-22 23:02:55
阅读次数:
483
PS:Apache http server 需要依赖 apr、apr-util、pcre,所以要先下载和安装这三个东东。而apr-util和pcre又依赖apr,所以要先安装apr。...
分类:
系统相关 时间:
2014-07-22 23:02:14
阅读次数:
363
搭建环境介绍:硬件平台:HP Z800 工作站 内存:24GB 硬盘:1TB虚拟化环境:XenServer 6.2.0VM1:Ubuntu 12.04 amd64 server | IP:192.168.137.50VM2:Ubuntu 12.04 amd64 server | IP:192.168.137.51VM3:Ubuntu 12.04 amd64 server | IP:19...
分类:
移动开发 时间:
2014-07-22 22:59:34
阅读次数:
461
问题描述:
在Eclipse中运行ant批量打包工具出错,日志信息如下:
D:\Android\android-sdk-windows\tools\ant\build.xml:601: The following error occurred
while executing this line:
D:\Android\android-sdk-windows\tools\ant\bui...
分类:
移动开发 时间:
2014-04-30 22:48:39
阅读次数:
359
公司服务器有.NET2的应用在运行,而我使用了.NET4平台开发,本机测试没问题,扔服务器发现要么我的新平台不好使,要么.NET2的旧平台不好使,各种重启IIS服务和WWW服务都无济于事
当我意识到是这两个平台冲突时,我回想了下我并没有使用什么涉及到冲突的组件和功能,于是我猜测可能是.NET2和.NET4的版本冲突问题
错误提示显示:
Server Application Unavail...
分类:
移动开发 时间:
2014-04-30 22:46:38
阅读次数:
347
./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory...
分类:
其他好文 时间:
2014-04-30 22:43:38
阅读次数:
346
--跟踪文件读入到表中分析
SELECT * INTO ZGSJY
FROM fn_trace_gettable('E:\wxxcdbprofiler.trc', default);
--某时间内,最耗时SQL
select TOP 100 SUBSTRING(Textdata,1,660) as '名称',
count(*) as '数量', sum(duration/1000) as '总执行...
分类:
数据库 时间:
2014-04-30 22:37:39
阅读次数:
327
示例代码将在注册表位置:HKEY_CURRENT_USER\Software\ 读写键值
bool LicenseManage::OpenRegKey(HKEY& hRetKey)
{
if (ERROR_SUCCESS == RegOpenKey(HKEY_CURRENT_USER,"Software", &hRetKey))
{
return true;
...
分类:
其他好文 时间:
2014-04-30 22:12:40
阅读次数:
195