coding.my-locus.com coding.my-locus.com

coding.my-locus.com

coding.my-locus

coding.my-locus,一个程序员的简洁博客,回归技术和博客的本质,记录个人的编程成长笔记,关于java,groovy,ruby,go

http://coding.my-locus.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR CODING.MY-LOCUS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

July

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.7 out of 5 with 15 reviews
5 star
5
4 star
5
3 star
3
2 star
0
1 star
2

Hey there! Start your review of coding.my-locus.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

7.1 seconds

CONTACTS AT CODING.MY-LOCUS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
coding.my-locus | coding.my-locus.com Reviews
<META>
DESCRIPTION
coding.my-locus,一个程序员的简洁博客,回归技术和博客的本质,记录个人的编程成长笔记,关于java,groovy,ruby,go
<META>
KEYWORDS
1 code
2 my-locus
3 mylocus
4 geek
5 coding
6 编程
7 IT
8 程序员
9 IT博客
10 IT分享
CONTENT
Page content here
KEYWORDS ON
PAGE
coding my locus,archives,categories,tags,ruby,encoding,code points,code unit,java,notes,struts2,valuestack,ognl,依赖注入,raquo; uml类图几种关系的总结,jquery,jquery validate,raquo; 文件下载当前页面提示错误信息,file download,read,previous,next,my locus com
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

coding.my-locus | coding.my-locus.com Reviews

https://coding.my-locus.com

coding.my-locus,一个程序员的简洁博客,回归技术和博客的本质,记录个人的编程成长笔记,关于java,groovy,ruby,go

INTERNAL PAGES

coding.my-locus.com coding.my-locus.com
1

文件下载当前页面提示错误信息

http://coding.my-locus.com/2014/04/iframe-mock-ajax-download.html

因为项目中使用了struts2,在action中直接返回的是 Inputstream, 如果文件不存在跳转到一个页面。 在页面直接让下载链接放在 a href= download. 下载 /a 中,下载文件不存在时页面会跳转。 在网上有找一个方法但是觉得太复杂了,大概的方法是,在一个form里提交请求,在后台下载的时候如果文件不存在会写入一个cookie信息,然后用js在前台不段的获取cookie数据,再给出提示,再删除cookie信息。 可以参考他的实现DEMO http:/ jqueryfiledownload.apphb.com/. 源代码 http:/ github.com/johnculviner/jquery.fileDownload/blob/master/src/Scripts/jquery.fileDownload.js. 之前在使用jquery.from文件上传的时候,发现在IE中实现的方式,其实是使用一个隐藏的iframe提示的。 不是 a 标签也有一个target属性吗 直接指定到iframe中会怎样 果然也可以。 Page language="java" import="jav...

2

ant 自定义 task

http://coding.my-locus.com/2014/09/custom-ant-task.html

Ant custom task: hello# # 最简单的 task, 只需要一个对象, 其中有一个 execute 方法, 之后在 build.xml 通过 deskdef 定义 task, 指定 task 名字, task 对象路径, 以及 task 对象的完整名称. Public class Hello { public void execute() { System.out.println("hello"); } }. Buildxml 配置 - target name="hello" description="hello" taskdef name="hello" classname="com.test.tools.ant.Hello" classpath="${classes.dir}" / hello / /target. Ant custom task: attr# # 带属性的 ant task, 在 task 对象中添加与 task 对应的属性字段, 并提供 set 方法. Ant custom task: text# # 跟 ant 有 echo 一样, 可以标签中使用文本.

3

stackoverflow上java关于paresInt跟valueof的问题

http://coding.my-locus.com/2014/01/parseInt-and-valueOf.html

Stackoverflow 上关于parseInt 跟 valueOf 的问题. System.out.println(Integer.valueOf("127")= Integer.valueOf("127") ; / output is true System.out.println(Integer.valueOf("128")= Integer.valueOf("128") ; / output is false System.out.println(Integer.parseInt("128")= Integer.valueOf("128") ; / output is true. 为什么第二条语句输出的是 ture, 第二个输入 false? 这两个的不同就在于第一个的值是 127 第二个的值是 128, 而第三个输出的是true. Integer.valueOf(),跟Integer.parseInt(). Java 的 IntegerCache 在对 Integer 对象的处理. IntegerCache 是 Integer 的一个内部类. Integer.valueOf("128...

4

sql 注入

http://coding.my-locus.com/2014/01/SQL-injection.html

All your datas are belong to us (if we can break into the query context)# #. 现在假设有一个URL包含一个 id=1 查询参数,这个参数最后会传到 SQL 查询语句中. Select * from Widget where ID = 1 完整的URL连接可以是这样的 http:/ widgetshop.com/widget/? 现在可以改请求的参数,比如给传一个参数 2 ,这样都是正常的,但是如果把参数改成 1 or 1=1 呢. Select * from Widget where id = 1 or 1=1. 这告诉我们数据没有经过验证处理(not being sanitised),期望的是一个Integer的数据类型,但是实际上接收到的值是 1 or 1=1 更重要的是这个参数导致sql语句的变更会改变原语句的功能。 如果是加上一个 or 1=2 就是没有结果, 通过这两种情况我们就很容易判断这个程序是不是存在潜在的sql注入问题. Select name from Widget where TypeId=1. Id=co...

5

coding.my-locus

http://coding.my-locus.com/archives.html

Raquo; Ruby 中的编码问题. Raquo; character encoding, code points vs code unit. Raquo; ant 自定义 task. Raquo; Ognl 跟 struts2 ValueStack. Raquo; 源码分析 Struts2 执行的过程. Raquo; 源码分析 Struts2 的初始化过程. Raquo; struts2 IOC容器实现跟注入源码分析. Raquo; jquery validate option 参数的使用. Raquo; sql 注入.

UPGRADE TO PREMIUM TO VIEW 11 MORE

TOTAL PAGES IN THIS WEBSITE

16

OTHER SITES

coding.mobi coding.mobi

Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required. For online documentation and support please refer to nginx.org. Commercial support is available at nginx.com. Thank you for using nginx.

coding.modularthought.com coding.modularthought.com

Coding @ Modular Thought

Here are some temporary links. Article #1: Document.Write Using DOM Methods. In an attempt to replicate and learn from the parsing scripts of JSON, I decided to take a string and convert it to its. Based equivelant. Whether this is benificial or useful, I hadn't decided to investigate. I decided to just take on this recursive monster. To see the script in an example check this page. Let's start with the call:. Document.write(str,"place");. This can also be written without the try statement:. Var at = 0;.

coding.moris.org coding.moris.org

KEEP CODING

Hacking SSL support into smtpop.dll. In one of our applications, we use. To retrieve email from a POP3 mailbox. Today, we had to connect to a mailbox that supports only SSL, while. Does not work with SSL. Our code to retrieve email is behind a façade, so I expected that it would be easy to replace. With another mail framework. However, I found out that the interface mimicked that of. The solution I went for was to decompile. Region Constructors and Destructors. Region Public Methods and Operators. Everyw...

coding.ms coding.ms

Startsite

Simplicity is the result of maturity.

coding.my-guide.org coding.my-guide.org

Coding Hooks'n Hacks

How to show random posts after current post. March 23rd, 2009 Comments Off on How to show random posts after current post. It is very useful to show some random posts after the current reading post. You online need one litle function for that:. Tags: $wpdb- get results. Change autosave interval and limit revisions. March 16th, 2009 Comments Off on Change autosave interval and limit revisions. To change auto save interval you have to put this line in your wp-config.php:. AUTOSAVE INTERVAL’ ,. If you wish ...

coding.my-locus.com coding.my-locus.com

coding.my-locus

Raquo; Ruby 中的编码问题. Raquo; character encoding, code points vs code unit. Raquo; ant 自定义 task. Raquo; Ognl 跟 struts2 ValueStack. Raquo; 源码分析 Struts2 执行的过程. Raquo; 源码分析 Struts2 的初始化过程. Raquo; struts2 IOC容器实现跟注入源码分析. Raquo; jquery validate option 参数的使用. Raquo; sql 注入. Page: 1 of 1.

coding.nanotrack.jp coding.nanotrack.jp

コーディング代行サービス|XHTML+CSSコーディングサービス

コーディングサービスでは、適正なコーディング料金を算出するために ページ数 単価 という方法を採用しています。

coding.net coding.net

Coding - 代码托管 项目管理 WebIDE 企业服务

邀请评审,对 MR 1 或授权,历史版本分屏对比,按行评论代码. Coding 的代码托管功能除了基本的 Git 代码仓库以外,还有保护分支、代码分屏对比、代码评审等高级功能,并且整合了 Pages 服务,代码分析等开发工具,提升研发效率。 不论你需要什么样的开发环境,带 root 的全功能 Terminal 足以满足你的需求! Coding WebIDE 是 Coding 自主研发的在线集成开发环境。 与此同时,WebIDE 还提供了可分享的开发环境功能,用户可以保存当前的 Terminal 环境,分享给团队的其他成员。 标准化 Webhook 接口 现已全面对接钉钉. 深圳 上海 北京 成都 西雅图. 希望观看该视频请启用浏览器Javascript, 并尝试升级您的浏览器以 支持HTML5视频. 希望观看该视频请启用浏览器Javascript, 并尝试升级您的浏览器以 支持HTML5视频.

coding.online-gadget.com coding.online-gadget.com

Helpful Tools for Coding

No software or installation required. What's my IP. What's my Screen Resolution. HTML to Text Converter. JSON to XML Converter. XML to JSON Converter. General Tools for Coding. No matter if you are a professional coder or if coding websites and mobile phone applications is just a fun hobby to you, the tools on this site will help you to improve your codes and files the code is stored in. HTML to Text Converter. JSON to XML Converter. XML to JSON Converter. What can those different tools do?

coding.pb-miller.de coding.pb-miller.de

Confixx

Die Domain www.coding.pb-miller.de ist nicht verfügbar.

coding.phoenix-eyes.com coding.phoenix-eyes.com

Adrian's Tech Blog | Keep it simple.

Adrian's Tech Blog. 1 Git repository on GitLab. 2 Cloning a Git repository. 3 Submitting changes to a Git repository. 4 Share your Git repository. In developing software, apart from being able to write code in a certain programming language, the ability to keep track of what you have written is as essential. For this purpose, too main categories of version control systems (VCS) are being widely used:. Examples: Git and Mercurial. For the "private user", GitLab. Here, you can find a short tutorial. Leave ...