摘要:
首先,由于模拟器上没有蓝牙装置,所以我们需要一个含有蓝牙装置的Android系统 其次,要操作设备上的蓝牙装置,需要在AndroidManifest中声明两个权限:1 2 第一个权限称为“蓝牙管理”,是对蓝牙的可见性设置,扫描装置,关闭等操作所设置的 第二个权限是普通的“蓝牙操作权限”,可以... 阅读全文
摘要:
利用Struts2生成静态页面其实很灵活,很强大,尤其是利用Struts2对Freemarker较好的支持,充分利用Freemarker的模板功能来生成静态 页面。基本思路为:利用Struts2对自定义result type的支持,自定义能够生成静态页面的result type,结合模板引擎Free... 阅读全文
摘要:
三种排序方法:选择排序,插入排序,冒泡排序 1 public class Sort { 2 3 /** 4 * 5 * 各种排序方法 6 * 7 * @param args 8 * @return 9 * @return10 ... 阅读全文
摘要:
Activities提供了一种方便管理的创建、保存、回复的对话框机制,例如 onCreateDialog(int), onPrepareDialog(int, Dialog), showDialog(int), dismissDialog(int)等方法,如果使用这些方法的 话,Activity将通... 阅读全文
摘要:
唯一标识码这东西在网络应用中非常有用,例如检测是否重复注册之类的1 import android.provider.Settings.Secure;2 3 private String android_id = Secure.getString(getContext().getContentReso... 阅读全文
摘要:
可以转换以下格式的数字:一百三千五二万三千五百三3千4百 1 package com.baijob.vsearch.util; 2 3 import java.util.*; 4 5 /** 6 * 处理数词的工具类 7 * @author liushiquan 8 * ... 阅读全文
摘要:
1 # An example log4j configuration file that outputs to System.out. The output information consists of relative time, 2 # log level, thread name, log... 阅读全文
摘要:
在有代理服务器的情况下,需要通过X-FORWARDED-FOR http头来获得真实的用户ip: 1 public final class HTTPUtils { 2 3 private static final String HEADER_X_FORWARDED_FOR = 4 ... 阅读全文
摘要:
1 public static int partition(int[] a, int f, int b) { 2 int pivot = a[f]; 3 while (f = pivot) { 5 b--; 6 ... 阅读全文
摘要:
1 void insertionSort(int[] arr) { 2 int i, j, newValue; 3 for (i = 1; i 0 && arr[j - 1] > newValue) { 7 arr[j] = arr[j - 1]; 8 ... 阅读全文
摘要:
1 import java.net.*; 2 import java.io.*; 3 4 public class Main { 5 public static void main(String[] args) { 6 Socket Skt; 7 String ho... 阅读全文
摘要:
1 public static void main(String a[]){ 2 int i; 3 int array[] = {12,9,4,99,120,1,3,10}; 4 System.out.println("\n\n RoseIndia\n\n"); 5 Sys... 阅读全文
摘要:
1 public void getBMPImage(String source) throws Exception { 2 3 clearNData(); //清除数据保存区 4 FileInputStream ... 阅读全文
摘要:
public void bubbleSort(int[] arr) { boolean swapped = true; int j = 0; int tmp; while (swapped) { swapped = false; j++; for (in... 阅读全文
摘要:
/** * @Descriptionmap 将图片文件转化为字节数组字符串,并对其进行Base64编码处理 * @author temdy * @Date 2015-01-26 * @param path 图片路径 * @return */public static String imageToBa... 阅读全文