皮卡皮卡皮 皮卡皮卡皮
3年前
git 本地代码提交到远程仓库
git将本地代码添加到远程仓库1.本地初始化使用gitinit进行初始化可以使用lsa就可以看到.git文件2.创建远程仓库点击复制仓库地址3.连接远程仓库shellgitremoteaddoriginhttps://gitee.com/test/test.git4.将远程仓库的文件pull到本地gitpullrebase
Wesley13 Wesley13
3年前
java连接zookeeper服务器出现“KeeperErrorCode = ConnectionLoss for ...”
错误信息如下:1Exceptioninthread"main"org.apache.zookeeper.KeeperException$ConnectionLossException:KeeperErrorCodeConnectionLossfor/test2atorg.apache.zookeeper
执键写春秋 执键写春秋
3年前
IO编程实例——使用缓冲流实现文件的拷贝
数据源:"C:\\Users\\你是小朱老师呀\\Desktop\\test.txt"数据的目的地:"C:\\Users\\你是小朱老师呀\\Desktop\\XSC\\test.txt"实现步骤:1.创建源文件与目标文件2.创建节点流3.创建缓冲流4.读取、写入5.释放packageperson.xsc.praticeIII;importjava.
Stella981 Stella981
3年前
Android开发:Android虚拟机启动错误Can't find 'Linux version ' string in kernel image file
Android启动出错,虚拟机报错信息如下:  StartingemulatorforAVD'test'_emulator:ERROR:Can'tfind'Linuxversion'stringinkernelimagefile:E:\\CoCosStudio\\ADT\\adtbundlewindows
Wesley13 Wesley13
3年前
Java8 Lambda(
一、简述Java8之前创建一个线程的代码:newThread(newRunnable(){@Overridepublicvoidrun(){System.out.println("Test");
Wesley13 Wesley13
3年前
PHP 异常处理
//报错,扑捉不到异常//try{//require('test_try_catch.php');//}catch(Exception$e){//echo$egetMessage();//}//可以扑捉到异常tr
Stella981 Stella981
3年前
PostgreSQL报跨库异常及解决一例
今天群里一个哥们发了个错误信息:ERROR:crossdatabasereferencesarenotimplemented:"public.test.id"错误ERROR:crossdatabasereferencesarenotim
Wesley13 Wesley13
3年前
ThinkPHP
server{listen80;server_nametest.cn;indexindex.php;root/data/wwwroot/test_tp5/public;includethinkphp.conf;
Wesley13 Wesley13
3年前
JAVA 线程基本知识汇总--ThreadLocal 和 InheritableThreadLoc
package org.test;public class ThreadLocalTest {public static void main(String args) {User user  new User(new ThreadLocal<String());Book book 
Stella981 Stella981
3年前
Hibernate HQL查询
packagecn.sasa.test;importorg.hibernate.Session;importorg.hibernate.Transaction;importcn.sasa.domain.account;importcn.sasa.utils.HibernateUti