• brnshop .NET+SQL 商城项目

    brnshop .NET+SQL 商城项目。 后台管理、商家管理、用户中心、PC端、H5端。基础功能非常全面,可扩展性强

    0
    95
    60.56MB
    2020-09-03
    10
  • SkyApm.Transport.Grpc.Protocol.rar

    废话不多说: 解压,替换项目 skywalking-netcore V7 官网上下载的包异常,替换上面的包从新编译即可通过。

    0
    129
    294KB
    2020-05-29
    16
  • layuimini-2.zip

    前端开源框架~02基于layui,好部署,好上手。 直接解压运行index.html即可 学习layui好例子,0基础都可以学会,一看就会

    0
    342
    1.98MB
    2020-04-21
    39
  • WeAdmin.zip

    直接解压->执行index.html即可运行~好上手好部署:基于layui. 框架:WeAdmin 用户名:1 密码:1

    0
    106
    2.17MB
    2020-04-21
    11
  • PDF转换工具.exe

    网上缺少pdf-base64转换,因此个人开发一个小工具,期望对大家有用 绿色版PDF转换工具。转换base64 ——————pdf互转。

    0
    122
    16KB
    2019-12-04
    19
  • wifi(只要能连WIFI,就能散WIFI)

    wifi(只要能连WIFI,就能散WIFI) 配合:https://download.csdn.net/download/a_158/8251453

    0
    70
    118KB
    2019-01-05
    9
  • c# API RSA非对称加密实现及应用

    根据以下参数请求,具体参数根据具体接口说明文档为准(请求参数与返回参数复制到http://www.bejson.com/、http://json.cn/里面查询更清晰)......

    0
    140
    98KB
    2016-07-27
    16
  • java jsonto对象互转

    package com.json; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import net.sf.ezmorph.object.DateMorpher; import net.sf.json.JSONArray; import net.sf.json.JSONObject; import net.sf.json.JsonConfig; import net.sf.json.processors.JsonValueProcessor; import net.sf.json.util.CycleDetectionStrategy; import net.sf.json.util.JSONUtils; public class TestJsonServlet { /** * 从一个JSON 对象字符格式中得到一个java对象 * * @param jsonString * @param pojoCalss * @return */ @SuppressWarnings("unchecked") public static <T> T jsonToObject(String jsonString, Class<T> pojoCalss) { Object pojo; JSONObject jsonObject = JSONObject.fromObject(jsonString); pojo = JSONObject.toBean(jsonObject, pojoCalss); return (T) pojo; } /** * json字符串转换成集合 * * @param jsonString * @param pojoClass * @return */ @SuppressWarnings("unchecked") public static <T> List<T> jsonToList(String jsonString, Class<T> pojoClass) { JSONArray jsonArray = JSONArray.fromObject(jsonString); JSONObject jsonObject; Object pojoValue; List<T> list = new ArrayList<T>(); for (int i = 0; i < jsonArray.size(); i++) { jsonObject = jsonArray.getJSONObject(i); pojoValue = JSONObject.toBean(jsonObject, pojoClass); list.add((T) pojoValue); } return list; } /** * json字符串转换成集合 * * @param jsonString * @param pojoClass * @return */ @SuppressWarnings("unchecked") public static <T> List<T> jsonToList(String jsonString, Class<T> pojoClass, String dataFormat) { JsonConfig jsonConfig = configJson(dataFormat); JSONArray jsonArray = JSONArray.fromObject(jsonString, jsonConfig); JSONObject jsonObject; Object pojoValue; List<T> list = new ArrayList<T>(); for (int i = 0; i < jsonArray.size(); i++) { jsonObject = jsonArray.getJSONObject(i); pojoValue = JSONObject.toBean(jsonObject, pojoClass); list.add((T) pojoValue); } return list; } /** * 将java对象转换成json字符串 * * @param javaObj * @return */ public static String objectToJson(Object javaObj) { JSONObject json; json = JSONObject.fromObject(javaObj); return json.toString(); } /** * 将java对象转换成json字符串,并设定日期格式 * * @param javaObj * 要转换的java对象 * @param dataFormat * 制定的日期格式 * @return */ public static String objectToJson(Object javaObj, String dataFormat) { JSONObject json; JsonConfig jsonConfig = configJson(dataFormat); json = JSONObject.fromObject(javaObj, jsonConfig); return json.toString(); } /** * list变成json * * @param list * @return */ public static <T> String listToJson(List<T> list) { JSONArray json; json = JSONArray.fromObject(list); return json.toString(); } /** * list变成json * * @param list * @return */ public static <T> String listToJson(List<T> list, String dataFormat) { JSONArray json; JsonConfig jsonConfig = configJson(dataFormat); json = JSONArray.fromObject(list, jsonConfig); return json.toString(); } /** * JSON 时间解析器 * * @param datePattern * @return */ public static JsonConfig configJson(final String datePattern) { JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(new String[] { datePattern })); JsonConfig jsonConfig = new JsonConfig(); jsonConfig.setIgnoreDefaultExcludes(false); jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT); jsonConfig.registerJsonValueProcessor(Date.class, new JsonValueProcessor() { @Override public Object processObjectValue(String key, Object value, JsonConfig jsonConfig) { if (value instanceof Date) { String str = new SimpleDateFormat(datePattern).format((Date) value); return str; } return value == null ? null : value.toString(); } @Override public Object processArrayValue(Object value, JsonConfig jsonConfig) { String[] obj = {}; if (value instanceof Date[]) { SimpleDateFormat sf = new SimpleDateFormat(datePattern); Date[] dates = (Date[]) value; obj = new String[dates.length]; for (int i = 0; i < dates.length; i++) { obj[i] = sf.format(dates[i]); } } return obj; } }); return jsonConfig; } }

    0
    1016
    1.45MB
    2015-06-01
    35
  • 爱听音乐播放器

    爱听音乐 一个简单的音乐播放器 支持多种格式 无需安装 适合运行环境XP win7 win8 netFormwork 4 5及以上版本 持续更新状态 V1.0.0.4更新版 1、支持同步歌词 2、支持自动检索LRC歌词编码 3、修改优化外观 4、修复部分BUG ----------------------- 该版本还是开发中(免费下载).....后期继续上传 无毒无害、欢迎各位大牛提出建议

    0
    132
    6.57MB
    2015-04-23
    10
  • 《爱听音乐》

    爱听音乐 一个简单的音乐播放器 支持多种格式 无需安装 适合运行环境XP win7 win8 netFormwork 4 5及以上版本 持续更新状态

    0
    47
    5.69MB
    2015-04-21
    7
  • 签到新秀

    累计签到获取,不积跬步,无以至千里,继续坚持!
  • 创作能手

    授予每个自然周发布1篇到3篇原创IT博文的用户
  • 分享精英

    成功上传11个资源即可获取
  • 持续创作

    授予每个自然月内发布4篇或4篇以上原创或翻译IT博文的用户。不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
关注 私信
上传资源赚积分or赚钱