- 浏览: 992904 次
- 性别:
- 来自: 珠海
最新评论
-
熊猫仙:
请问,这个程序可以和BLE蓝牙设备通讯吗?
C#编程连接蓝牙设备,文件收发 -
lsy234009:
“这个电脑蓝牙不可用!”原因多半是你没打开蓝牙
C#编程连接蓝牙设备,文件收发 -
wujie_cnhn:
这个加密压缩后, linux环境下可以解压缩吗
好用java开源zip压缩解压类库Zip4j -
asdf_2012:
兄弟简单明了。顶你
C#使用Event在窗体之间传递消息和参数 -
xkb281:
简单易懂 不像有的文章 介绍一大堆没整明白是什么地下 赞一个 ...
Android网络请求框架Retrofit使用笔记
文章列表
1.escape函数
<script>
document.write(escape("Hello World!!你好,世界!!"))
document.write("<br/>");
document.write(unescape("Hello%20World%21%21%u4F60%u597D%uFF0C%u4E16%u754C%uFF01%uFF01"))
</script>
2.parse与isNaN
<script>
var str=&q ...
JavaScript关于函数参数
- 博客分类:
- JavaScript学习
1.函数指定默认参数
<script>
function fun(a,b,c){
a = a ? a:1;//方法1
if(typeof(b)=='undefined'){//方法2
b=2;
}
alert(a+'-'+b+'-'+c);
}
fun();
</script>
2.获取所有参数
<script>
function fun(){
alert(arguments.length);//获得参数数组长度
var sum=0;
f ...
JAVA使用JDOM创建简单xml
- 博客分类:
- JAVA学习
package org.hu.jdom;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import org.jdom.*;
import org.jdom.output.XMLOutputter;
public class MyJDOM {
public static void main(String args[]){
Element root=new Element("root");
Element linkm ...
C#简单创建xml文件
- 博客分类:
- C#学习
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
namespace ConsoleDemo
{
class Programme
{
public static void Main(string[] args)
{
XmlDocument doc = new XmlDocument();
XmlDeclarati ...
C#中delegate使用
- 博客分类:
- C#学习
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Demo
{
public delegate int Fun(int i);
class Program
{
static void Main(string[] args)
{
Fun f = sqrt;
Console.WriteLine(f(5));
...
C#中event基本使用
- 博客分类:
- C#学习
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleDemo
{
class Program
{
static void Main(string[] args)
{
SendCls sc = new SendCls();
sc.eveMyeve += new SendCls.deleMydele(sc_eveMyeve);
sc.r ...