摘要: /* Title */ <script type="text/javascript" src="Script/jquery-1.4.1.min.js"></script> /* JQuery */ <script type="text/javascript"> $(function () { $(' 阅读全文
posted @ 2017-08-11 09:50 徐海峰 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 一个通用且常用的Java正则匹配工具,用以检查邮箱名、电话号码、用户密码、邮政编码等合法性。 import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegexUtils { /** * 验证Email 阅读全文
posted @ 2017-08-11 09:48 徐海峰 阅读(194) 评论(0) 推荐(0) 编辑
摘要: //FileStream _fs = new FileStream(this.FileUpload1.FileName, FileMode.Open); byte[] iBytes = new byte[this.FileUpload1.FileContent.Length]; BinaryRead 阅读全文
posted @ 2017-08-11 09:46 徐海峰 阅读(204) 评论(0) 推荐(0) 编辑
摘要: //把文件转成二进制流出入数据库private void button2_Click(object sender, EventArgs e){ FileStream fs = new FileStream(textBox1.Text, FileMode.Open); BinaryReader br 阅读全文
posted @ 2017-08-11 09:46 徐海峰 阅读(1115) 评论(0) 推荐(0) 编辑
摘要: float _thumbnail_X = 0;float _thumbnail_Y = 0;int _thumbnail_Width = 480;int _thumbnail_Height = 480;//新建内存变量存储原图数据MemoryStream _sourceImage_MemoryStr 阅读全文
posted @ 2017-08-11 09:44 徐海峰 阅读(361) 评论(0) 推荐(0) 编辑
摘要: int checkCallPhonePermission = ContextCompat.checkSelfPermission(mContext,Manifest.permission.CALL_PHONE); if(checkCallPhonePermission != PackageManag 阅读全文
posted @ 2017-08-11 09:41 徐海峰 阅读(93) 评论(0) 推荐(0) 编辑
摘要: TextView textView1; int iCont=0; private Thread mThread; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceSt 阅读全文
posted @ 2017-08-11 09:41 徐海峰 阅读(76) 评论(0) 推荐(0) 编辑
摘要: getSupportActionBar().hide(); 阅读全文
posted @ 2017-08-11 09:39 徐海峰 阅读(139) 评论(0) 推荐(0) 编辑
摘要: package com.example.xuhaifeng.everygo; import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Da 阅读全文
posted @ 2017-08-11 09:39 徐海峰 阅读(334) 评论(0) 推荐(0) 编辑
摘要: // viewpager_view_01.xml // viewpager_view_02.xml // activity.main.xml <android.support.v4.view.ViewPager android:id="@+id/main_viewPager" android:lay 阅读全文
posted @ 2017-08-11 09:38 徐海峰 阅读(101) 评论(0) 推荐(0) 编辑