标准功能操作事物代码VA02 操作后计划行被删除 需求是:实现批量操作,用户不需要一个一个的点,程序批量释放 参考地址:http://www.abapcookbook.com/sap-abap-code-sample/function-module-change-cancel-confirmed-q ...
分类:
其他好文 时间:
2020-02-15 15:05:22
阅读次数:
239
LeetCode 0167: Two Sum II Input array is sorted【Python】 题目 "英文题目链接" Given an array of integers that is already sorted in ascending order\ , find two n ...
分类:
编程语言 时间:
2020-02-12 00:19:27
阅读次数:
74
1. 问题描述 运行多个 spring boot 程序,出现报错 java.rmi.server.ExportException: Port already in use: 7888; nested exception is: java.net.BindException: Address alre ...
分类:
编程语言 时间:
2020-02-10 17:56:16
阅读次数:
71
今天学习了python爬虫的简单操作。 1.学会创建文件夹和创建文件: 1 import os 2 3 def mkdir(path): 4 if os.path.exists(path):###判断是文件夹否存在,否则有可能会报错 5 print("The path has already exi ...
分类:
其他好文 时间:
2020-02-09 14:57:56
阅读次数:
108
const changeFavicon = link => { let $favicon = document.querySelector('link[rel="icon"]'); // If a <link rel="icon"> element already exists, // change ...
分类:
Web程序 时间:
2020-02-08 20:52:04
阅读次数:
371
调用多次readN,所以要重复使用internal buffer """ The read4 API is already defined for you. @param buf, a list of characters @return an integer def read4(buf): # B ...
分类:
其他好文 时间:
2020-02-07 18:42:43
阅读次数:
71
先用read4拷贝到buf4,然后从buf4里读: """ The read4 API is already defined for you. @param buf, a list of characters @return an integer def read4(buf): # Below is ...
分类:
其他好文 时间:
2020-02-07 16:35:00
阅读次数:
78
出现这个问题的原因是,多模块Maven项目,parent目录不能不能有src的code。找到parent 的 Source Folders看看是否把module的给加载进来了。删掉就可以了。 参考: 【1】IDEA出现Module ** must not contain source root ** ...
分类:
其他好文 时间:
2020-02-06 11:04:05
阅读次数:
143
Caused by: java.net.BindException: Address already in use: bind 1.输入 netstat -ano|findstr 8080,回车,显示在最后面的数字就是我们tomcat进程的端口号。 2.输入 taskkill /pid 8080 / ...
分类:
其他好文 时间:
2020-02-03 09:37:25
阅读次数:
97
冒泡排序(Bubble Sort)也是一种简单直观的排序算法。它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。这个算法的名字由来是因为越小的元素会经由交换慢慢"浮"到数列的顶端。 def bu ...
分类:
编程语言 时间:
2020-01-31 14:21:21
阅读次数:
71