上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 1.在src下的MainActivity.java中实例化WebView组件:WebView webView = new WebView(this);2.调用WebView的onCreate()方法,设置WevView要显示的网页: 网络地址:webView.loadUrl("http://www.... 阅读全文
posted @ 2014-07-10 11:26 Xyang 阅读(1345) 评论(0) 推荐(0) 编辑
摘要: 1.首先下载并配置jdk 安装完后打开系统环境变量设置, a.系统变量→新建 JAVA_HOME 变量 。变量值填写jdk的安装目录 b.系统变量→寻找 Path 变量→编辑 在变量值最后输入 %JAVA_HOME%\bin;%JAVA_HOME%\jre\bin; (注意原来Path的变量值末尾有... 阅读全文
posted @ 2014-06-19 08:38 Xyang 阅读(166) 评论(0) 推荐(0) 编辑
摘要: ::selection {background:#FF9; color:#F00;}::-moz-selection {background:#FF9; color:#F00;}::-webkit-selection {background:#FF9; color:#F00;} 阅读全文
posted @ 2014-06-19 08:34 Xyang 阅读(7336) 评论(0) 推荐(1) 编辑
摘要: 一.原因Authenticated Users(经过身份验证的用户)没有操作权限二.解决方法找到该数据库文件存放的目录右键打开属性菜单,选择“属性”菜单->选择“安全”标签->选择“编辑”按钮。在选择组或用户名列表中,选择Authenticated Users,在权限列表中选中完全控制。 阅读全文
posted @ 2014-02-24 22:54 Xyang 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 直接上方法 public static ArrayList getImgUrl(string html, string regstr, string keyname) { ArrayList resultStr = new ArrayList(); Regex r = new Regex(regstr, RegexOptions.IgnoreCase); MatchCollection mc = r.Matches(html); f... 阅读全文
posted @ 2014-02-17 15:27 Xyang 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 1.添加UrlRewriter.dll引用2.修改Web.config<configSections>节点下添加<section name="ReplaceUrl" type="URLRewriter.Config.UrlsSection, URLRewriter"/>根节点下添加 <ReplaceUrl> <urls> <add virtualUrl="~/about.html" destinationUrl="~/about.aspx"/> <a 阅读全文
posted @ 2013-05-24 17:49 Xyang 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 1.准备模板newsItem.html<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title></head><body> <h1>$Porschev[0]$</h1> <p& 阅读全文
posted @ 2013-05-24 15:45 Xyang 阅读(914) 评论(0) 推荐(1) 编辑
摘要: 一直以为各浏览器空格宽度的差异是因为各浏览器对标签的解释有差异造成的。其实是由于各浏览器的默认字体不同造成的,若是不知道字体的话,在不同浏览器下空格空出来的宽度是不一样的。 阅读全文
posted @ 2013-05-16 12:24 Xyang 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1.准备XmlHelper工具类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml.Serialization;using System.IO;using System.Xml;namespace QDDAL{ public static class XmlHelper { private static void XmlSerializeInternal(Stream stream, object o, Encoding e... 阅读全文
posted @ 2013-05-07 14:19 Xyang 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 1.准备工作拷贝相关文件都项目根目录下页面中引入文件2.使用方法及主要参数 function show1() { art.dialog({ height: 460, width:600, title:'标题', content:'信息内容', fixe... 阅读全文
posted @ 2013-02-19 15:42 Xyang 阅读(11109) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
hi