• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






潘

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2018年8月16日

java 中int类型与16进制互相转换,高低四位
摘要: 、/* int -> byte[] */ 、/* int -> byte[] */ public static byte[] intToBytes(int num) { public static byte[] intToBytes(int num) { byte[] b = new byte[4] 阅读全文
posted @ 2018-08-16 14:02 潘_xue_ping 阅读(1475) 评论(0) 推荐(0)
 

2018年7月17日

Centos7 使用yum安装MariaDB
摘要: 现在在服务器配置数据库,一般都会直接配置MariaDB,它可以实现mysql数据库连接。 1、安装MariaDB 安装命令 yum -y install mariadb mariadb-server 安装完成MariaDB,首先启动MariaDB systemctl start mariadb 设置 阅读全文
posted @ 2018-07-17 10:03 潘_xue_ping 阅读(10949) 评论(0) 推荐(0)
 
Centos7 防火墙配置
摘要: 1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop firewalld 2.systemc 阅读全文
posted @ 2018-07-17 09:52 潘_xue_ping 阅读(199) 评论(0) 推荐(0)
 

2018年4月18日

sqlserver数据库导入Mysql数据库问题
摘要: 近来遇到一个问题,之前的项目用的是SQLServer数据库,但是现在要换成MySQL数据库,所有整理了一些数据导入的步骤,供需要的人参考! 第一步: 第二步: 第三步: 第四步: 第五步: 第六步: 第七步: 第八步: 第九步: 第十步: 第十一步: 至此,数据导入就完成了!以此记录笔记,共享... 阅读全文
posted @ 2018-04-18 10:18 潘_xue_ping 阅读(9991) 评论(4) 推荐(0)
 

2018年3月6日

SpringContextUtil 的配置和调用
摘要: 首先:在springmvc里面配置 package com.ece.manager.web.controller;import org.springframework.beans.BeansException;import org.springframework.context.Applicatio 阅读全文
posted @ 2018-03-06 17:15 潘_xue_ping 阅读(5139) 评论(0) 推荐(0)