java语言将大数组拆分成小数组示例//定义一个长度为X的数组 String[] all = new String[10]; for (int i = 0; i < 10; i++) { all[i]="组"+i; } //定义每个小数组的长度 int SMS_GROUP_NUMER = 3……继续阅读 » 水墨上仙 10年前 (2017-04-01) 3042浏览 1963个赞
Android下快速生成get、set、toString等方法,Java语法 有两种方式:方式一:通过快捷键Alt+Insert方式二:Code–>Generate刚开始使用Android Studio时,在创建一个javabean时,很习惯的在JavaBean类中,右键去找生成get,set等选项。但是……继续阅读 » 水墨上仙 10年前 (2017-04-01) 2614浏览 2587个赞
python怎么样获得http状态码是不是404或者500的方法python可以通过urllib和requests两个模块来获得网页的状态嘛,一般网页如果是正常状态,状态码为200,如果出现程序上的错误状态码是500,如果未找到文件,状态码是404.第一种,通过urllib可以轻易获得网页的状态码import urllibstatus=urll……继续阅读 » 水墨上仙 10年前 (2017-04-01) 2467浏览 309个赞
使用Django类如何使用二进制数据输出图片的方法有时候我们的图片是通过代码生成的,比如二维码和处理过的图片,我们不需要将图片存储为文件即可直接输出文件到浏览器。from django.http import HttpResponse def my_image(request): image_data = open("pict……继续阅读 » 水墨上仙 10年前 (2017-04-01) 2239浏览 1260个赞
python-qrcode是个用来生成二维码图片的第三方模块,依赖于 PIL 模块和 qrcode 库。QRCode官网 https://pypi.python.org/pypi/qrcode/5.1简单用法import qrcode img = qrcode.make('hello, qrcode')img.save(……继续阅读 » 水墨上仙 10年前 (2017-04-01) 3053浏览 1910个赞
python代码实现二分查找示范二分查找又称折半查找,优点是比较次数少,查找速度快,平均性能好;其缺点是要求待查表为有序表,且插入删除困难。因此,折半查找方法适用于不经常变动而查找频繁的有序列表。def BinarySearch(alist, target): low, high = 0, len(alist)-1 while low……继续阅读 » 水墨上仙 10年前 (2017-04-01) 2087浏览 2466个赞
如何使用python的httplib发送GET和POST请求功能代码python有一个httplib的库,提供了很方便的实现方法GET和POST请求,只需要简单的组合一下就行了。python发送get请求代码:#!/usr/bin/env python#coding=utf8 import httplib httpClient = ……继续阅读 » 水墨上仙 10年前 (2017-04-01) 2178浏览 1623个赞
mongodb中数组查询的两个简单语句的使用方法 通过$in和$all 关键词对mongodb的数组进行查询的代码,下面介绍了mongodb中的方法这条语句查询site字段中同时包含haotu.net 和 75271.com 两个元素的记录db.food.find({“site”:{“$a……继续阅读 » 水墨上仙 10年前 (2017-04-01) 3109浏览 1768个赞
UTF-8、GB2312都支持的汉字截取函数/* Utf-8、gb2312都支持的汉字截取函数 cut_str(字符串, 截取长度, 开始长度, 编码); 编码默认为 utf-8 开始长度默认为 0 */ function cut_str($string, $sublen, $start = 0, $code = ……继续阅读 » 水墨上仙 10年前 (2017-04-01) 1905浏览 1941个赞
微信小程序-家居电商说明:实现了家居电商功能。数据接口:– https://api.getweapp.com/vendor/huosu/api下载链接: https://pan.baidu.com/s/1pLnX54R 密码: 目录结构:– images — 存放项目图片– pages — 存放项目……继续阅读 » 开心洋葱 10年前 (2017-03-31) 2135浏览 4评论2170个赞
智能机器人兔兔源代码-微信小程序免费下载链接: https://pan.baidu.com/s/1qYlTAri 密码: ……继续阅读 » 开心洋葱 10年前 (2017-03-31) 3306浏览 3评论1639个赞
微信小程序游戏示例 – 剪刀石头布小游戏=====================> 没事打开小程序,和附近的人剪刀石头布,想来就来,想走就走。谁能成为武林高手?!微信小程序提供了一套在微信上运行小程序的解决方案,有比较完整的框架、组件以及 API,在这个平台上面的想象空间很大。腾讯云拿到了小程序内测资格,研究了一番之后,发现微信……继续阅读 » 开心洋葱 10年前 (2017-03-31) 1720浏览 5评论1874个赞
微信小程序 货币汇率换算应用 货币汇率换算应用链接: https://pan.baidu.com/s/1nvPpsBv 密码: ……继续阅读 » 开心洋葱 10年前 (2017-03-31) 2800浏览 1评论263个赞
极客学院文章列表 -微信小程序 基于微信小程序的在线免费小说的开发链接: https://pan.baidu.com/s/1eR8swvw 密码: ……继续阅读 » 开心洋葱 10年前 (2017-03-31) 1685浏览 1评论1340个赞
说明:虽然只实现了会议精灵首页,但设计较为美观,值得借鉴。数据接口:使用本地数据目录结构:– img — 存放项目图片– pages — 存放项目页面相关文件,包括index,layout等页面– utils — 存放日期处理文件,可require引入开发环境:微信web开发者工具 v0.10.1028……继续阅读 » 开心洋葱 10年前 (2017-03-31) 1751浏览 1评论1532个赞
java 随机队列实现的完整方法import java.util.ArrayList;import java.util.Collection;import java.util.Iterator;import java.util.LinkedList;import java.util.NoSuchElementException;impo……继续阅读 » 水墨上仙 10年前 (2017-03-31) 1612浏览 1382个赞
php通过HTTP_USER_AGENT判断用户是否是在微信客户端内打开的网页function is_weixin(){ if ( strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false ) { ret……继续阅读 » 水墨上仙 10年前 (2017-03-31) 3075浏览 2851个赞
滑动选项卡效果示例 -微信小程序源码下载滑动选项卡效果下载链接: https://pan.baidu.com/s/1nvDKaTz 密码:……继续阅读 » 开心洋葱 10年前 (2017-03-31) 3366浏览 4评论991个赞
微信小程序用画布画出时钟效果源代码说明:利用canvas实现了模拟时钟功能。数据接口:使用本地数据接目录结构:pages — 存放项目页面渲染相关文件开发环境:微信web开发者工具 微信小程序-画布时钟下载链接: https://pan.baidu.com/s/1jIr53x0 密码: ……继续阅读 » 开心洋葱 10年前 (2017-03-31) 2423浏览 0评论1117个赞
果库图文小程序 微信小程序源码果库图文小程序下载链接: https://pan.baidu.com/s/1o7MpnN8 密码:……继续阅读 » 开心洋葱 10年前 (2017-03-31) 3699浏览 2评论432个赞
js使用try…catch捕捉错误信息代码方法var txt="";function message(){try { adddlert("Welcome guest!"); }catch(err) { txt="There was……继续阅读 » 水墨上仙 10年前 (2017-03-31) 2038浏览 1781个赞
JavaScript中可以通过continue临时中止循环的某次动作,然后继续执行<p>Click the button to do a loop which will skip the step where i=3.</p><button>Try it</button><p……继续阅读 » 水墨上仙 10年前 (2017-03-31) 3038浏览 1200个赞
下面的代码提供了Python 最常用的日期和时间操作方法,包括日期转换,获得当前时间,获得多少天以后的日期等等,非常全面。#-*- coding: utf-8 -*-import datetime #给定日期向后N天的日期def dateadd_day(days): d1 = datetime.datetime.now() ……继续阅读 » 水墨上仙 10年前 (2017-03-31) 2628浏览 2455个赞
php 树形结构的读取<?php // 从数组转换,操作无限分类数组. // 数组格式, array(array('cid', 'pid', 'val'), array('cid', 'pid', 'val')); class tr……继续阅读 » 水墨上仙 10年前 (2017-03-31) 1572浏览 1574个赞
java 简单实用的文件下载代码package wan.url.download;import java.io.File;import java.io.FileOutputStream;import java.io.InputStream;import java.io.OutputStream;import java.net.Htt……继续阅读 » 水墨上仙 10年前 (2017-03-31) 1702浏览 2750个赞
下面的演示代码通过while循环语句输出数字1-6<p>75271.com,Click the button to loop through a block of as long as <em>i</em> is less than 5.</p><button>Try it……继续阅读 » 水墨上仙 10年前 (2017-03-31) 2419浏览 1538个赞
Js通过记录cookie临时访客信息用户第一次访问网页时会提示用户输入一个昵称,然后写入cookie,当用户再次来到时会读取cookie信息,提取用户昵称,欢迎用户的到来function getCookie(c_name){var c_value = document.cookie;var c_start = c_valu……继续阅读 » 水墨上仙 10年前 (2017-03-31) 1771浏览 2738个赞
JavaScript中我们可以定义一个通用的错误处理程序,只要页面出现JS错误就自动调用已经定义好的错误处理程序onerror=handleErr;var txt="";function handleErr(msg,url,l){txt="There was an error on th……继续阅读 » 水墨上仙 10年前 (2017-03-31) 3499浏览 2693个赞
js搜索字符串,成功后返回找到的字符串-JavaScript字符串带有一个match方法用于搜索字符串,如果找到指定的字符串则返回搜索字符串,如果未找到则返回null,match方法区分大小写var str="Hello world!";document.write(str.match("worl……继续阅读 » 水墨上仙 10年前 (2017-03-30) 2050浏览 2259个赞
js代码输出当前时间Unix时间戳-JavaScript语言下面的代码通过Date对象的getTime()放回unix时间戳,即从1970年1月1日到当前时间的秒数<p id="demo">Click the button to display the number of milliseconds si……继续阅读 » 水墨上仙 10年前 (2017-03-30) 1812浏览 2835个赞
js将当前时间转换为标准UTC时间-JavaScript代码,北京在东八区,在北京时间基础上减掉8小时<p id="demo">Click the button to display the UTC date and time as a string.</p><button>……继续阅读 » 水墨上仙 10年前 (2017-03-30) 2533浏览 1670个赞
C#使用TextReader从文本类型文件读取数据TextReader reader = File.OpenText(@"C:\data\file.xml"); // Read a line at a time until we reach the end of filewhile (reader.Peek( ) != ……继续阅读 » 水墨上仙 10年前 (2017-03-30) 2482浏览 816个赞
在Linux系统里使用C语言获取所有网卡信息的方法#include #include #include #include #include int main(){ struct ifreq ifr; struct ifconf ifc; char buf[2048]; int succ……继续阅读 » 水墨上仙 10年前 (2017-03-30) 3039浏览 1520个赞
使用JavaScript语言创建数组的方法,下面的代码演示了在JS中如何创建数组并赋值,然后对数组进行循环遍历输出var i;var mycars = new Array();mycars[0] = "Saab";mycars[1] = "Volvo";mycars[2] = ……继续阅读 » 水墨上仙 10年前 (2017-03-30) 3202浏览 933个赞
在JavaScript代码中让contact函数合并两个数组下面的代码演示了JS中如何将两个数组连接成一个数组<p id="demo">Click the button to join three arrays.</p><button>Try it</button&……继续阅读 » 水墨上仙 10年前 (2017-03-30) 3430浏览 1876个赞
怎么样用JavaScript的alert显示带换行的警告对话框JavaScript的alert对话框如果需要换行的话可以在字符串中加入\n即可<p>Click the button to demonstrate line-breaks in a popup box.</p><button>T……继续阅读 » 水墨上仙 10年前 (2017-03-30) 2813浏览 1778个赞
使用JavaScript语言获取iframe的longdesc属性<p>Your browser does not support iframes.</p><p>The URL of the long description is:document.write(document……继续阅读 » 水墨上仙 10年前 (2017-03-30) 3209浏览 397个赞
JavaScript中可以使用confirm弹出一个确认对话框,用户可以点击ok或者cancel,JS可以接收到用户点击的按钮<p>Click the button to display a confirm box.</p><button>Try it</button>&l……继续阅读 » 水墨上仙 10年前 (2017-03-30) 1671浏览 2696个赞
C#代码实现穿过代理服务器取远程用户真实IP地址 if(Request.ServerVariables["HTTP_VIA"]!=null){ string user_IP=Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); ……继续阅读 » 水墨上仙 10年前 (2017-03-30) 1620浏览 339个赞
python API接口调用示例代码#!/usr/bin/python# encoding:utf-8 import urllib2, json, urllib data = {}data["appkey"] = "your_appkey_here"data["word……继续阅读 » 开心洋葱 10年前 (2017-03-30) 1757浏览 0评论1290个赞
这段代码用来判断ie的版本,不同的版本调用不同的样式<!-- [if IE]>-->According to the conditional comment this is Internet Explorer<!-- [if IE 5]>-->According to the conditional ……继续阅读 » 水墨上仙 10年前 (2017-03-30) 3035浏览 145个赞
一个构造sql语句的类/*** @package Database Class* @author injection (mail:injection.mail@gmail.com)* @version 1.0*/@ini_set( 'display_errors',0 );class DataBas……继续阅读 » 水墨上仙 10年前 (2017-03-30) 1647浏览 2118个赞
js提示用户输入对话框prompt使用代码演示使用JavaScript代码Click the button to demonstrate the prompt box.Try itfunction myFunction(){var x;var person=prompt(“Please enter your name”,&……继续阅读 » 水墨上仙 10年前 (2017-03-30) 3361浏览 758个赞
简单的HTTP服务器用Java代码实现import java.net.*;import java.nio.ByteBuffer;import java.nio.channels.*;import java.nio.charset.*;import java.util.concurrent.*;import java.io.*;……继续阅读 » 水墨上仙 10年前 (2017-03-30) 1887浏览 1924个赞
小程序2048游戏-微信小程序游戏源码小程序2048游戏源码下载地址:……继续阅读 » 开心洋葱 10年前 (2017-03-30) 2879浏览 0评论984个赞