#Ls

ParallelStreamAPI

 /***ParallelStreamAPI**/publicclassT14_ParallelStreamAPI{publicstaticvoidmain(String[]args){List<Integer>nums=newArrayList<>();Randomrandom=ne...
代码星球 ·2020-04-02

ForkJoinPools

 /***T12_ForkJoinPool分而治之*Fork:分叉*Join:合并**将一个任务拆分多个任务执行(可以无限切分),然后将结果合并**比如大量的并行计算,如下:求100_0000个数字之和,使用多线程*/publicclassT12_ForkJoinPool{staticint[]nums=ne...
代码星球 ·2020-04-02

BeanUtils工具类

BeanUtils.copyProperties(productInfo,orderDetail);把 productInfo中的属性copy到 orderDetail中...
代码星球 ·2020-04-02

from __future__ import unicode_literals 的使用

从Python2.7到Python3.x就有不兼容的一些改动,比如2.x里的字符串用'xxx'表示str,Unicode字符串用u'xxx'表示unicode,而在3.x中,所有字符串都被视为unicode,因此,写u'xxx'和'xxx'是完全一致的,而在2.x中以'xxx'表示的str就必须写成b'xxx',以此表...

用nginx搭建http/rtmp/hls协议的MP4/FLV流媒体服务器

前前后后搭建了两三个星期,终于可以告一段落,nginx实在是有点强大。写一篇笔记来记录一下这个过程中的思路和解决方案。一.搭建nginx平台:基本是基于http://blog.csdn.net/xiaoliouc/article/details/8363984 一步步安装nginx搭建流媒体服务器这篇博客来搭...
代码星球 ·2020-04-02

通过nginx搭建hls流媒体服务器

通过录像文件模拟直播源,通过rtmp协议推送到nginx服务器 nginx配置文件增加 [html] viewplain copy  rtmp {        serv...

beautifulsoup

#coding=utf8importbs4importrefrombs4importBeautifulSouphtml_doc="""<html><head><title>TheDormouse'sstory</title></head><body>...
代码星球 ·2020-04-02

git config --global core.autocrlf false

gitconfig--globalcore.autocrlf false warning:LFwillbereplacedbyCRLFin.idea/vcs.xml.Thefilewillhaveitsoriginallineendingsinyourworkingdirectory.warning...

mysqlsla安装和使用介绍

安装mysqlsla源码路径:https://github.com/daniel-nichter/hackmysql.com源码存放路径:/usr/local/src1、获取源码如果没有git命令,请先安装gityum-yinstallgityum-yinstallperl-ExtUtils-Embedcd/usr/l...
代码星球 ·2020-04-01

spring FileCopyUtils类 上传图片

需要注入ServletContext@AutowiredprivateServletContextservletContext;/***上传图片*/privateStringsaveFile(MultipartFilefile){if(!file.isEmpty()){try{//getRealPath()取得WEB-...

IF-ELSE嵌套练习

一,1,编写程序,由键盘输入三个整数分别存入变量num1,num2,num3中,对它们进行排序,使用if-else结构,并按从小到大的顺序输出:packagepractice;importjava.util.Scanner;publicclassIfTest{publicstaticvoidmain(Stringarg...
代码星球 ·2020-04-01

Mui本地打包笔记(一)使用AndroidStudio运行项目 转载 https://blog.csdn.net/baidu_32377671/article/details/79632411

转载 https://blog.csdn.net/baidu_32377671/article/details/79632411使用AndroidStudio运行HBuilder本地打包的Mui项目Mui官网5+SDK下载地址官网的AndroidStudio打包说明离线打包说明(包括引入aar包的图文教程)&...

gcc编译出现dlopen、dlerror、dlsym、dlcolse的解决方法

 ➜  test_sqlite3gcc*.c-I.-oxixi-pthread     /tmp/cckGKTrr.o:Infunction`unixDlOpen':sqlite3.c:(.text+0x1124d):undefinedre...

H5 本地存储localStorage的使用(返回前一页浏览的历史位置)

最近在做微信网页优化,,发现在微信中浏览列表的时候滑到了一个中间的位置,点击了某一个详情,可是从详情页返回之后发现列表又重新开始返回到了第一个,列表的数据下拉通过ajax加载数据,从详情页返回的时候页面进行了刷新,原来的数据被刷掉了,这几天百度了很多,刚开始看着很懵逼,询问了一些大佬,参考了百度到的东西,慢慢的摸索,终...

关于poi导出excel方式HSSFWorkbook(xls).XSSFWorkbook(xlsx).SXSSFWorkbook.csv的总结

1.HSSFWorkbook(xls)importorg.apache.poi.hssf.usermodel.HSSFCell;importorg.apache.poi.hssf.usermodel.HSSFRow;importorg.apache.poi.hssf.usermodel.HSSFSheet;import...
首页上一页...419420421422423...下一页尾页