上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 56 下一页
摘要: SysUserHelper package com.sys.helper; import com.utils.AjaxResult; import com.pageModel.SysUserInf; import com.sys.service.ISystemUserService; import 阅读全文
posted @ 2020-03-15 22:29 一只桔子2233 阅读(474) 评论(0) 推荐(0)
摘要: Maven项目Resource标签 打包时加入java文件夹的配置文件 在<build>元素下添加<resources>进行配置,即可自定义xml及properties配置文件位置 <build> <resources> <resource> <directory>src/main/resource 阅读全文
posted @ 2020-03-14 01:15 一只桔子2233 阅读(701) 评论(0) 推荐(0)
摘要: Socket private static void M1() throws Exception { Thread serverThread = new Thread() { @Override public void run() { try { ServerSocket server = new 阅读全文
posted @ 2020-03-07 21:58 一只桔子2233 阅读(123) 评论(0) 推荐(0)
摘要: 推荐单例模式 /** * 单例模式 - 饿汉式 */ class Singleton { private Singleton() { } private static final Singleton instance = new Singleton(); public static Singleto 阅读全文
posted @ 2020-03-05 22:33 一只桔子2233 阅读(121) 评论(0) 推荐(0)
摘要: Jquery 动态交换两个div位置并添加Css动画效果 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>jquery交换Div位置</title> </head> <body> <div id="top" style="w 阅读全文
posted @ 2020-03-02 11:55 一只桔子2233 阅读(1806) 评论(0) 推荐(0)
摘要: HttpHelper using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Security; using Syst 阅读全文
posted @ 2020-03-01 13:40 一只桔子2233 阅读(1253) 评论(0) 推荐(0)
摘要: TimeHelper public static class TimeHelper { public static string GetCurrentTimestamp(bool millisecond = true) { return DateTime.Now.ToTimestamp(millis 阅读全文
posted @ 2020-02-29 22:29 一只桔子2233 阅读(331) 评论(0) 推荐(0)
摘要: 1 long timestamp = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000; 2 /// <summary> /// 指定Post地址使用Get 方式获取全部字符串 /// </summary> /// 阅读全文
posted @ 2020-02-29 21:18 一只桔子2233 阅读(403) 评论(0) 推荐(0)
摘要: 上传文件 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></ 阅读全文
posted @ 2020-02-27 18:49 一只桔子2233 阅读(122) 评论(0) 推荐(0)
摘要: LoginInterceptor package k.util; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor; 阅读全文
posted @ 2020-02-25 22:10 一只桔子2233 阅读(114) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 56 下一页