java开发工具
文章平均质量分 75
海边浪花一朵朵
这个作者很懒,什么都没留下…
展开
-
读取resources目录下配置文件并输出内容
如题,怎么做读取resource/txt 目录下file.txt 文件献上代码public class FileUtil { public static String getFileContent(String str) throws IOException{ //找到要读取目标文件的地址 String path = FileUtil.class.getClassLoader().getResource(str).getPath(); File file = new Fil原创 2020-07-10 15:50:51 · 836 阅读 · 0 评论 -
HttpClientUtil工具类的使用,亲测可用
前端时间领导要求弄个HttpClient 推送订单的例子截图科普来自于百科怎么做?第一步 pom依赖<dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.4.4</version> </dependency>原创 2020-07-09 10:51:52 · 1816 阅读 · 0 评论 -
集合map类型转Object类
集合map类型转Object类经常遇到的情况 map 转 Object 类型怎么做?1.添加pom依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.60</version> </dependency>2. 代码JSONObject.par原创 2020-07-07 10:51:30 · 1033 阅读 · 0 评论 -
String字符串 转 Map 工具
String字符串 转 Map 工具经常用的到的功能如何做?第一步 pom添加依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.60</version> </dependency>第二步 写个方法import com.alib原创 2020-07-03 16:26:25 · 617 阅读 · 0 评论 -
使用输出流FileOutputStream把数据写入本地文件
使用输出流FileOutputStream把数据写入本地文件直接上代码哈package com.pccc.springBoot.createTxt;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;pub...原创 2020-04-24 14:36:14 · 3801 阅读 · 0 评论 -
map 字符串转化成 json字符串
最近写代码遇到一个事每次把日志的字符串拿来用,都需要手工变成json,自己加引号,很烦,自己整了个方法,本来准备自己写,但是针对简单字符串可以,复杂的没搞成。贴上代码哈pom 文件<dependency> <groupId>com.google.code.gson</groupId> <artif...原创 2019-10-30 16:23:08 · 2069 阅读 · 0 评论