logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

【Java】解决 java:错误:编码GBK的不可映射字符

#错误描述:1、Java代码:public class Main {public static void main(String[] args) {System.out.println("我是中国人!");}}2、通过DOS 编译java文件时,提示错误:编译GBK的不可映射字符#解决方法:1、使用 javac -encodi...

#java
使用postman调用webservice接口

PostMan调用webservice接口,采用post方式,参数使用xml格式。#实例1、webservice地址:http://192.168.2.13/psum/UserModuleService.asmx;2、上传方式选择POST方式;3、header中设置:Content-Type:text/xml;charset=utf-84、参数:(xml格式)<?xml version="1

使用IDEA创建spring boot web项目并测试运行

在resource目录下新建 application.yml 配置文件,也可以创建 properties 为后缀的配置文件。到这里,这个webapp可以启动运行了,为了测试,下面继续新建web api 接口;新建一个启动类:Application。设置webapp的端口为:5566。

文章图片
#intellij-idea#spring boot#java
asp.net core web应用以服务的方式安装运行

https://www.cnblogs.com/emrys5/p/nssm-netcore.html

golang:“与你运行的 Windows 版本不兼容“的解决方法

文章目录#事故现场#解决方法#事故现场命令行中执行go 编译的可执行文件,报错如下:该版本的 test.exe 与你运行的 Windows 版本不兼容。请查看计算机的系统信息,然后联系软件发布者#解决方法原来是包名的问题,需要将包名改成“package main”,之前为“package test”package mainimport ("fmt")func main() {}...

docker pull 拉取镜像报错“Error response from daemon: Get “https://registry-1.docker.io/v2“的解决办法

1、docker pull 拉取镜像报错"Error response from daemon: Get "https://registry-1.docker.io/v2"2、设置docker的镜像源;

文章图片
#docker
.NET Core中使用编码GB2312报错:‘GB2312‘ is not a supported encoding name 的解决方案

#事故现场在.Net Core中使用XElement解析GB2312编码的xml文件,代码如下:string xmlp = "G:\\test\\content.xml";XElement xe = XElement.Load(xmlp);var tittle = xe.Element("TITLE").Value.Trim();var author = xe.Element("AUTHOR").

Git报错:Another git process seems to be running in this repository

文章目录#事故现场#原因分析#解决方法#事故现场Git操作的时候突然报错:Unable to create ‘D:/xxx/.git/index.lock’: File exists.Another git process seems to be running in this repository, e.g.an editor opened by ‘git commit’.Plea...

git报错:refusing to merge unrelated histories 的解决方法

文章目录#事故现场#解决方法#事故现场将本地代码添加到远程仓库,然后pull远程仓库代码时,报错:$ git remote add origin http://192.168.1.183/git/pstest.git$ git pull origin masterfatal: refusing to merge unrelated histories错误的意思是:(拒绝合并不相关的历史)#解决方法

nginx反向代理配置实例(自用亲测)

#https反向代理配置server {listen80;server_name zyzx.test.edu.cn;rewrite ^(.*)$ https://${server_name}$1 permanent;}#该条用于将http请求重定向到https#上传端口映射server {listen443 ssl;#监听https端口server_namezyzx.test.edu.cn;#这里

    共 55 条
  • 1
  • 2
  • 3
  • 6
  • 请选择