码迷,mamicode.com
首页 >  
搜索关键字:uri    ( 7732个结果
How Tomcat Works 2
上一节编写了自己的一个简单的web服务器,只能处理静态的资源,本节将创建一个两个不同的servlet容器,能够简单的处理动态的内容。 HttpServer1...
分类:其他好文   时间:2015-03-17 23:47:24    阅读次数:227
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar
http://blog.csdn.net/lzz313/article/details/7554736-------------个人经历-------myeclipse 10.6 的jsp页面引用的程序在myeclipse 8.6中页面运行500错误找到Java EE 5 Libraries 的找到...
分类:编程语言   时间:2015-03-17 17:42:50    阅读次数:158
java读写hdfs简单demo
环境:eclipse + eclipse hadoop插件, hadoop + rhel6.4 package test; import java.io.IOException; import java.net.URI; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; im...
分类:编程语言   时间:2015-03-17 15:53:05    阅读次数:255
js与uri中location关系
//获取域名host = window.location.host;host2=document.domain;//获取页面完整地址url = window.location.href;document.write("host="+host)document.write("host2="+host2...
分类:Web程序   时间:2015-03-17 11:54:07    阅读次数:180
RESTful 服务架构风格 * .NET的RESTful框架 OpenRasta
REST 的约束采用的就是掌控 Web 的基本原则。这些原则是:用户代理与资源交互,任何可命名和表达的事物都可称为资源。每项资源都有一个唯一的统一资源标识符 (URI)。与资源的交互(通过其唯一的 URI 定位)使用 HTTP 标准动词(GET、POST、PUT 和 DELETE)的统一接口完成。交...
分类:Web程序   时间:2015-03-17 08:58:43    阅读次数:137
Android Intent 用法全面总结
[代码] 调用拨号程序 // 给移动客服10086拨打电话 Uri uri = Uri.parse("tel:10086"); Intent intent = new Intent(Intent.ACTION_DIAL, uri); startActivity(intent);[代码] 发送短信或彩...
分类:移动开发   时间:2015-03-15 23:32:34    阅读次数:212
常用Intent调用(摘自网络)
1.浏览器Uri uri =Uri.parse("http://www.google.com");Intent it= new Intent(Intent.ACTION_VIEW,uri);startActivity(it);2.地图Uri uri = Uri.parse("geo:38.89953...
分类:其他好文   时间:2015-03-15 21:07:35    阅读次数:143
Windows Phone 8.1 发送http 网络请求。
在windows phone 8.1 中可以用 HttpClient 类来发送http 请求。例子: try { Uri uri = new Uri(@"http://api.map.baidu.com/geocoder/v2/?ak=me7Onu...
分类:Windows程序   时间:2015-03-15 19:47:05    阅读次数:149
Ci 分页类的所有属性总结
//#######################自定义分页 $config['uri_segment'] = 3;//分页方法自动测定你 URI 的哪个部分包含页数 $config['num_links'] = 1;//当前页码的前面和后面的“数字”链接的数量 ...
分类:其他好文   时间:2015-03-15 00:32:32    阅读次数:553
PH获取当前url路径及服务器路径汇总 (url 获取当前路径 服务器路径)
以下是整理的一些, php中获取路径的小知识, 希望对你有所帮助!1,$_SERVER["QUERY_STRING"] 说明:查询(query)的字符串2,$_SERVER["REQUEST_URI"] 说明:访问此页面所需的URI3,$_SERVER["SCRIPT_NAME"] 说明:包含当前脚...
分类:Web程序   时间:2015-03-15 00:28:55    阅读次数:189
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!