错误处理 代码(C)本文地址:http://blog.csdn.net/caroline_wendy错误处理的函数包含在中,主要使用两个函数,strerror()返回出错信息字符串,perror()直接输出错误信息。代码:/*By C.L.Wang
* Eclipse CDT
* Ubuntu 12.04
* 2014.10.5*/
#include "apue.h"
#include "...
分类:
系统相关 时间:
2014-10-07 21:25:54
阅读次数:
187
今天用eclipse测试的时候出现QuittheserverwithCTRL-BREAK.Error:[Errno10013]1昨晚测试时还好好的,怎么突然出现这个错误,于是GOOLE,找到个帖子说可能是端口占用了,用工具查了下,果然是8000端口被KUGOU占用了,关闭KUGOU即正常了,分享出来让初学Django的童鞋少走弯路
分类:
其他好文 时间:
2014-10-03 15:25:25
阅读次数:
148
打开文件
open(name[mode[,buffing])
name: 是强制选项,模式和缓冲是可选的
#如果文件不在,会报下面错误:
[python] view plaincopyprint?
>>> f = open(r'D:\text.txt','r')
Traceback (most recent call last):
File "", line 1, in
IOError: [Errno 2] No such file or direc...
分类:
编程语言 时间:
2014-10-01 03:25:00
阅读次数:
516
最近在用ruby的一些库的时候,总是出现这个错误。在使用net/imap库的时候,或者net/http库(主要是用到了https,https是用了ssl) 的时候,具体如下:错误提示:E:/Ruby200/lib/ruby/2.0.0/net/imap.rb:1454:in `connect': S...
分类:
其他好文 时间:
2014-09-29 21:12:11
阅读次数:
631
MySQL数据库错误server_errno=2013的解决 一组MySQL复制环境中的Master意外掉电,重启后Master运行正常,但该复制环境中的其它slave端,Error Log中却抛出的如下错误信息:Version: '5.6.17-log' socket: '' port: 3...
分类:
数据库 时间:
2014-09-26 21:19:28
阅读次数:
669
/ 链接数据库$_mysqli = new mysqli();$_mysqli->connect('localhost','root','password','cms');if (mysqli_connect_errno()){ echo 'error:'.mysqli_connect_errn.....
分类:
数据库 时间:
2014-09-21 21:40:01
阅读次数:
218
很多程序库对外提供若干类,每个方法出错时如何告知调用者是否出错,以及出错码(在Linux上在error.h中的全局errno就是保存我们Linux程序执行的出错码的)?方法很多,为了简化起见,函数将返回一个对象,该对象保存了函数的返回值和出错码。
/*
* CLStatus.h
*
* Author: lilin
* email: lilin@uestc.edu....
分类:
系统相关 时间:
2014-09-19 15:38:05
阅读次数:
228
第1章 unix基础知识1. char *strerror(int errnum)该函数将errnum(就是errno值)映射为一个出错信息字符串,返回该字符串指针。声明在string.h文件中。2.void perror(const char *s) 该函数基于当前的errno值,在标准出错文件中...
分类:
其他好文 时间:
2014-09-16 10:32:20
阅读次数:
202
$mysqli = @new mysqli("localhost",'root','123456','demo_db');创建数据库连接对if(mysqli_connect_errno()){ echo "数据库连接失败".mysqli_connect_error(); $mysqli = nu.....
分类:
数据库 时间:
2014-09-13 21:25:55
阅读次数:
254
[以下均为windows平台,linux类似]
常见错误1:ErrNo 10061
ADB 的tcp转发错了,重新建立
解决办法:
首先检查adb可正确,adb shell能不能进去,如果能
那么输入 adb forward tcp:31415 tcp:31415
再drozer.bat console connect即可
常见错误2: ErrNo 1...
分类:
其他好文 时间:
2014-09-10 15:55:50
阅读次数:
1054