码迷,mamicode.com
首页 >  
搜索关键字:unable to load class    ( 203805个结果
模拟滚动条
js模拟滚动条,现在网上这种效果应该很多的,就自己写了一个试一下
分类:其他好文   时间:2014-05-01 01:10:46    阅读次数:435
文件流
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Li...
分类:其他好文   时间:2014-05-01 01:02:33    阅读次数:322
python压缩文件脚本
zf.py文件"""desc:读取配置文件config.ini压缩sourcepath路径到targetpath 并可以排除不需要压缩的文件excludefiletime:2014/4/30 12:03:42author:ggh"""import zipfile, os, configpar...
分类:编程语言   时间:2014-05-01 00:59:26    阅读次数:428
Win7的64位系统如何搭建安卓Android开发环境
程序开发者往往搭建安卓Android开发环境,那么现在比较主流的Win7的64位操作系统如何搭建呢?其实很简单,不需要设置任何环境变量,只需要下载两个程序包,下载的时候注意选择相应的64位程序包即可。步骤阅读 工具/原料ADTJDK 方法/步骤1第一步,下载Android开发的程序现在简称ADT,....
分类:移动开发   时间:2014-05-01 00:57:23    阅读次数:583
c++: 获取delete[]中的数组大小
看一个小例子:1#include 23using namespace std;45class A {6public:7A() { cout 23using namespace std;45class A {6public:7A() { cout << "A::A()" << endl; }8~A()...
分类:编程语言   时间:2014-05-01 00:55:19    阅读次数:658
ASP.NET MVC 4 (六) 帮助函数
帮助函数封装一些代码,方便我们在应用程序中重用,MVC内建很多帮助函数,可以很方便的生成HTML标记。首先列出后面示例中用到的数据模型类定义:namespace HelperMethods.Models { public partial class Person { public...
分类:Web程序   时间:2014-05-01 00:54:17    阅读次数:531
asp.net调用web service不通过添加web引用的方式怎么调用
创建方法//动态调用web服务 public static object InvokeWebSer(string url,string @namespace, string classname, string methodname, object[] args) { ...
分类:Web程序   时间:2014-05-01 00:53:13    阅读次数:386
走进C标准库(6)——"string.h"中函数的实现memchr
我写的memchr:1 void *memchr(const void *buf, char ch, unsigned count){2 unsigned int cnt = 0;3 while(*(buf++) != ch && cnt count)5 ret...
分类:其他好文   时间:2014-05-01 00:50:10    阅读次数:306
学习Webservice之入天气小试
主要方法是:通过程序中设置代理用公司内网访问外部Webservicepublic InputStream getSoapInputStream(String url) { InputStream inputStream = null; try { URL urlObj = new URL(u...
分类:Web程序   时间:2014-05-01 00:49:06    阅读次数:417
C++: 单例模式和缺陷
C++: 单例模式和缺陷实现一个单例模式1class Singleton {2private:3Singleton() { cout show(); 26return 0;27}编译执行上面的代码,输出如下:Singleton::constructorSingleton::show我们发现上面的输出...
分类:编程语言   时间:2014-05-01 00:47:04    阅读次数:500
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!