码迷,mamicode.com
首页 >  
搜索关键字:嵌入 os    ( 149919个结果
JavaWeb-JSP
JSP 1、什么是JSP Java Server Pages:Java服务器端页面,和servlet一样,用于动态web技术 最大的特点: 写JSP就像在写HTML 区别: HTML只给用户提供静态的数据 JSP页面中可以嵌入JAVA代码,为用户提供动态数据; 2、JSP原理 思路:JSP到底怎么执 ...
分类:编程语言   时间:2021-06-11 19:06:37    阅读次数:0
个人冲刺(四)——体温上报app(二阶段)
冲刺任务:完成用户注册功能和数据库类 RegisterActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.text. ...
分类:移动开发   时间:2021-06-11 18:08:57    阅读次数:0
Css语法
Css语法 一、Css引入的四种方式 行内式:在标签中加style属性,值为css代码,不同样式用" ; "号分隔 嵌入式:在head标签中,通过style标签来实现 <head> <style> p{ background-color: red; } </style> </head> 链接式:将c ...
分类:Web程序   时间:2021-06-10 18:33:13    阅读次数:0
django static/media配置
配置示例 # setting.py配置如下 ## 访问 http://IP/static/***.css STATIC_URL = '/static/' ## python manage.py collectstatic时,把所有静态文件聚集到此目录下 STATIC_ROOT = os.path.j ...
分类:其他好文   时间:2021-06-10 17:37:06    阅读次数:0
使用pandas合并结构相同的csv文件
#encoding=utf-8 import pandas as pd import os import csv def concat_csv(filename,dirpath): with open(filename,'w') as f: cw=csv.writer(f) cw.writerow( ...
分类:其他好文   时间:2021-06-09 15:30:20    阅读次数:0
5 - CentOS system configuration before k8s installation
Prerequisites: Node OS IP k8s-master CentOS7 192.168.137.161 k8s-node1 CentOS7 192.168.137.162 Now we have 2 working CentOS virtual machine, which can ...
分类:其他好文   时间:2021-06-08 23:40:34    阅读次数:0
QML-virtualKeyboard
虚拟键盘的集成有两种方式: 1、键盘出现在桌面,即系统的屏幕上,键盘的宽度等于屏幕的宽度,不依赖于app的宽度 2、键盘嵌入到我们的app中去,键盘的宽度等于我们app的宽度。 加载插件: $ QT_IM_MODULE=qtvirtualkeyboard myapp 具体做法: 方法2:在main. ...
分类:其他好文   时间:2021-06-08 23:26:27    阅读次数:0
多进程的调用(multiprocessing.Process)
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:系统相关   时间:2021-06-08 23:20:39    阅读次数:0
《安富莱嵌入式周报》第215期:2021.05.31--2021.06.06
往期周报汇总地址:http://www.armbbs.cn/forum.php?mod=forumdisplay&fid=12&filter=typeid&typeid=104 1、Nordic发博文谈半导体需求“新常态” 半导体厂家谈这个问题更有说服力。现在缺货已经不仅仅是MCU/MPU,外围常用 ...
分类:其他好文   时间:2021-06-07 21:04:57    阅读次数:0
python解压zip文件
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:编程语言   时间:2021-06-07 20:42:48    阅读次数:0
149919条   上一页 1 ... 5 6 7 8 9 ... 14992 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!