- 浏览: 47589 次
- 性别:
- 来自: 上海
最新评论
-
sio2long:
我试了一下,好像只支持文件的 加密压缩 。。。
对文件夹不支 ...
从网上找到用java给zip文件加密的方法 -
yjshengshe:
楼主强大,试过了可以用,感觉文件比较多,不知道可不可以精简些。 ...
从网上找到用java给zip文件加密的方法
package com.myapp.utils;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Properties;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathFactory;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
public class ReadWebPage {
/**
* @param args
* @throws IOException
* @throws InterruptedException
*/
// TODO Auto-generated method stub
public static void main(String[] args) throws IOException, InterruptedException {
MyThread myThread = new MyThread();
myThread.start();
}
private static void writeToTmpFile(String str,File f) throws IOException {
FileWriter fw = new FileWriter(f,true);
fw.write(str+"\r\n");
fw.flush();
fw.close();
}
private static void getIphone4MarketInfo(File file){
try {
DocumentBuilderFactory factory =
DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(file);
// NodeList nodeList = document.getElementsByTagName("book");
// for(int i=0;i<nodeList.getLength();i++){
// System.out.println(document.getElementsByTagName("title").item(i).getFirstChild().getNodeValue());
// System.out.println(document.getElementsByTagName("price").item(i).getFirstChild().getNodeValue());
// }
XPathFactory xpathFactory =XPathFactory.newInstance();
XPath xpath = xpathFactory.newXPath();
XPathExpression expression = xpath.compile("span[@class='customer_commit_display']/text()");
Object result = expression.evaluate(document,XPathConstants.NODESET);
NodeList nodeList = (NodeList)result;
for (int i = 0; i < nodeList.getLength(); i++) {
System.out.println(nodeList.item(i).getNodeValue());
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static String getTextFornHtml(String regEx,String inputText){
Pattern p;
Matcher m;
p=Pattern.compile(regEx);
m=p.matcher(inputText);
if(m.find()){
return m.replaceAll("");
}else{
return null;
}
}
public static boolean HtmlToTextGb2312(String inputString)
{
String htmlStr = inputString; //含html标签的字符串
String textStr ="";
Pattern p_script;
Matcher m_script;
Pattern p_style;
Matcher m_style;
Pattern p_html;
Matcher m_html;
Pattern p_houhtml;
Matcher m_houhtml;
Pattern p_spe;
Matcher m_spe;
Pattern p_blank;
Matcher m_blank;
Pattern p_table;
Matcher m_table;
Pattern p_enter;
Matcher m_enter;
Pattern p_iphone4;
Matcher m_iphone4;
boolean isFind=false;
try {
String regEx_script = "<[\\s]*?script[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?script[\\s]*?>";
//定义script的正则表达式.
String regEx_style = "<[\\s]*?style[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?style[\\s]*?>";
//定义style的正则表达式.
String regEx_html = "<[^>]+>";
//定义HTML标签的正则表达式
String regEx_houhtml = "/[^>]+>";
//定义HTML标签的正则表达式
String regEx_spe="\\&[^;]+;";
//定义特殊符号的正则表达式
String regEx_blank=" +";
//定义多个空格的正则表达式
String regEx_table="\t+";
//定义多个制表符的正则表达式
String regEx_enter="\n+";
//定义多个回车的正则表达式
String regEx_iphone4 ="<img[\\s\\S]*?alt=\"iPhone 4\">";
p_iphone4 = Pattern.compile(regEx_iphone4,Pattern.CASE_INSENSITIVE);
m_iphone4 = p_iphone4.matcher(htmlStr);
p_script = Pattern.compile(regEx_script,Pattern.CASE_INSENSITIVE);
m_script = p_script.matcher(htmlStr);
htmlStr = m_script.replaceAll(""); //过滤script标签
p_style = Pattern.compile(regEx_style,Pattern.CASE_INSENSITIVE);
m_style = p_style.matcher(htmlStr);
htmlStr = m_style.replaceAll(""); //过滤style标签
p_html = Pattern.compile(regEx_html,Pattern.CASE_INSENSITIVE);
m_html = p_html.matcher(htmlStr);
htmlStr = m_html.replaceAll(""); //过滤html标签
p_houhtml = Pattern.compile(regEx_houhtml,Pattern.CASE_INSENSITIVE);
m_houhtml = p_houhtml.matcher(htmlStr);
htmlStr = m_houhtml.replaceAll(""); //过滤html标签
p_spe = Pattern.compile(regEx_spe,Pattern.CASE_INSENSITIVE);
m_spe = p_spe.matcher(htmlStr);
htmlStr = m_spe.replaceAll(""); //过滤特殊符号
p_blank = Pattern.compile(regEx_blank,Pattern.CASE_INSENSITIVE);
m_blank = p_blank.matcher(htmlStr);
htmlStr = m_blank.replaceAll(" "); //过滤过多的空格
p_table = Pattern.compile(regEx_table,Pattern.CASE_INSENSITIVE);
m_table = p_table.matcher(htmlStr);
htmlStr = m_table.replaceAll(" "); //过滤过多的制表符
p_enter = Pattern.compile(regEx_enter,Pattern.CASE_INSENSITIVE);
m_enter = p_enter.matcher(htmlStr);
htmlStr = m_enter.replaceAll(" "); //过滤过多的制表符
textStr = htmlStr;
isFind=m_iphone4.find();
}catch(Exception e)
{
System.err.println("Html2Text: " + e.getMessage());
}
//return textStr;//返回文本字符串
return isFind;
}
static class MyThread extends Thread{
public void run(){
while(true){
InputStream is = null;
try {
URL url = new URL(
"http://store.apple.com/cn/browse/home/shop_iphone/family/iphone");
InetSocketAddress address = new InetSocketAddress("10.17.171.10",
8080);
Proxy proxy = new Proxy(Proxy.Type.HTTP, address);
HttpURLConnection connection = (HttpURLConnection) url
.openConnection(proxy);
connection.setConnectTimeout(60*1000);
is = connection.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(is,"utf-8"));
String line = "";
File f = new File("d:\\sss.txt");
String outStr=null;
String text=null;
while ((line = br.readLine()) != null) {
text=getTextFornHtml("<img[\\s\\S]*?alt=\"iPhone 3GS\">",line);
if(text!=null){
text="iPhone 3GS:";
outStr=text;
}
text=getTextFornHtml("<img[\\s\\S]*?alt=\"iPhone 4\">",line);
if(text!=null){
text="iphone4:";
outStr+=text;
}
if(line.contains("product-specs")||line.contains("16 GB")||line.contains("customer_commit_display")
||line.contains("freeshipping")||line.contains("32 GB")||line.contains("8 GB")){
outStr += line+"\r\n";
}
}
text=getTextFornHtml("(<[^>]+>)||(/[^>]+>||\\t+||\\s+)", outStr);
text=">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n"+text;
text=text+">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\n";
if(text.indexOf("24")!=text.lastIndexOf("24")){
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd HH:mm:ss");
Date date= new Date();
String currentDate = sdf.format(date);
text="有货啦:"+currentDate+"\r\n"+text;
writeToTmpFile(text,f);
}
System.out.println(text.trim());
System.out.println("\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n");
//getIphone4MarketInfo(f);
br.close();
Thread.sleep(10 * 1000L);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
// public static void sendMail(String to, String toName,String subject, String body ) {
// try {
// Properties prop = System.getProperties();
//// prop.put( "mail.smtp.auth ", "true ");
//// prop.setProperty("proxySet", "true");
//// //设置http访问要使用的代理服务器的地址
//// prop.setProperty("socksProxyHost", "10.17.171.10");
// //设置http访问要使用的代理服务器的端口
//// prop.setProperty("socksProxyPort", "8080");
// HtmlEmail email = new HtmlEmail();
// email.setHostName("localhost");//设置发信的smtp服务器
// email.addTo(to, toName);//设置收件人帐号和收件人
// email.setFrom("vbtboy@126.com", "aaa");//设置发信的邮件帐号和发信人
// email.setSubject(subject);//设置邮件主题
// email.setAuthentication("aaa","111111");//如果smtp服务器需要认证的话,在这里设置帐号、密码
// email.setHtmlMsg(body);//设置邮件正文和字符编码
// email.send();
// } catch (EmailException e) {
// e.printStackTrace();
// }
}
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Properties;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathFactory;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
public class ReadWebPage {
/**
* @param args
* @throws IOException
* @throws InterruptedException
*/
// TODO Auto-generated method stub
public static void main(String[] args) throws IOException, InterruptedException {
MyThread myThread = new MyThread();
myThread.start();
}
private static void writeToTmpFile(String str,File f) throws IOException {
FileWriter fw = new FileWriter(f,true);
fw.write(str+"\r\n");
fw.flush();
fw.close();
}
private static void getIphone4MarketInfo(File file){
try {
DocumentBuilderFactory factory =
DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(file);
// NodeList nodeList = document.getElementsByTagName("book");
// for(int i=0;i<nodeList.getLength();i++){
// System.out.println(document.getElementsByTagName("title").item(i).getFirstChild().getNodeValue());
// System.out.println(document.getElementsByTagName("price").item(i).getFirstChild().getNodeValue());
// }
XPathFactory xpathFactory =XPathFactory.newInstance();
XPath xpath = xpathFactory.newXPath();
XPathExpression expression = xpath.compile("span[@class='customer_commit_display']/text()");
Object result = expression.evaluate(document,XPathConstants.NODESET);
NodeList nodeList = (NodeList)result;
for (int i = 0; i < nodeList.getLength(); i++) {
System.out.println(nodeList.item(i).getNodeValue());
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static String getTextFornHtml(String regEx,String inputText){
Pattern p;
Matcher m;
p=Pattern.compile(regEx);
m=p.matcher(inputText);
if(m.find()){
return m.replaceAll("");
}else{
return null;
}
}
public static boolean HtmlToTextGb2312(String inputString)
{
String htmlStr = inputString; //含html标签的字符串
String textStr ="";
Pattern p_script;
Matcher m_script;
Pattern p_style;
Matcher m_style;
Pattern p_html;
Matcher m_html;
Pattern p_houhtml;
Matcher m_houhtml;
Pattern p_spe;
Matcher m_spe;
Pattern p_blank;
Matcher m_blank;
Pattern p_table;
Matcher m_table;
Pattern p_enter;
Matcher m_enter;
Pattern p_iphone4;
Matcher m_iphone4;
boolean isFind=false;
try {
String regEx_script = "<[\\s]*?script[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?script[\\s]*?>";
//定义script的正则表达式.
String regEx_style = "<[\\s]*?style[^>]*?>[\\s\\S]*?<[\\s]*?\\/[\\s]*?style[\\s]*?>";
//定义style的正则表达式.
String regEx_html = "<[^>]+>";
//定义HTML标签的正则表达式
String regEx_houhtml = "/[^>]+>";
//定义HTML标签的正则表达式
String regEx_spe="\\&[^;]+;";
//定义特殊符号的正则表达式
String regEx_blank=" +";
//定义多个空格的正则表达式
String regEx_table="\t+";
//定义多个制表符的正则表达式
String regEx_enter="\n+";
//定义多个回车的正则表达式
String regEx_iphone4 ="<img[\\s\\S]*?alt=\"iPhone 4\">";
p_iphone4 = Pattern.compile(regEx_iphone4,Pattern.CASE_INSENSITIVE);
m_iphone4 = p_iphone4.matcher(htmlStr);
p_script = Pattern.compile(regEx_script,Pattern.CASE_INSENSITIVE);
m_script = p_script.matcher(htmlStr);
htmlStr = m_script.replaceAll(""); //过滤script标签
p_style = Pattern.compile(regEx_style,Pattern.CASE_INSENSITIVE);
m_style = p_style.matcher(htmlStr);
htmlStr = m_style.replaceAll(""); //过滤style标签
p_html = Pattern.compile(regEx_html,Pattern.CASE_INSENSITIVE);
m_html = p_html.matcher(htmlStr);
htmlStr = m_html.replaceAll(""); //过滤html标签
p_houhtml = Pattern.compile(regEx_houhtml,Pattern.CASE_INSENSITIVE);
m_houhtml = p_houhtml.matcher(htmlStr);
htmlStr = m_houhtml.replaceAll(""); //过滤html标签
p_spe = Pattern.compile(regEx_spe,Pattern.CASE_INSENSITIVE);
m_spe = p_spe.matcher(htmlStr);
htmlStr = m_spe.replaceAll(""); //过滤特殊符号
p_blank = Pattern.compile(regEx_blank,Pattern.CASE_INSENSITIVE);
m_blank = p_blank.matcher(htmlStr);
htmlStr = m_blank.replaceAll(" "); //过滤过多的空格
p_table = Pattern.compile(regEx_table,Pattern.CASE_INSENSITIVE);
m_table = p_table.matcher(htmlStr);
htmlStr = m_table.replaceAll(" "); //过滤过多的制表符
p_enter = Pattern.compile(regEx_enter,Pattern.CASE_INSENSITIVE);
m_enter = p_enter.matcher(htmlStr);
htmlStr = m_enter.replaceAll(" "); //过滤过多的制表符
textStr = htmlStr;
isFind=m_iphone4.find();
}catch(Exception e)
{
System.err.println("Html2Text: " + e.getMessage());
}
//return textStr;//返回文本字符串
return isFind;
}
static class MyThread extends Thread{
public void run(){
while(true){
InputStream is = null;
try {
URL url = new URL(
"http://store.apple.com/cn/browse/home/shop_iphone/family/iphone");
InetSocketAddress address = new InetSocketAddress("10.17.171.10",
8080);
Proxy proxy = new Proxy(Proxy.Type.HTTP, address);
HttpURLConnection connection = (HttpURLConnection) url
.openConnection(proxy);
connection.setConnectTimeout(60*1000);
is = connection.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(is,"utf-8"));
String line = "";
File f = new File("d:\\sss.txt");
String outStr=null;
String text=null;
while ((line = br.readLine()) != null) {
text=getTextFornHtml("<img[\\s\\S]*?alt=\"iPhone 3GS\">",line);
if(text!=null){
text="iPhone 3GS:";
outStr=text;
}
text=getTextFornHtml("<img[\\s\\S]*?alt=\"iPhone 4\">",line);
if(text!=null){
text="iphone4:";
outStr+=text;
}
if(line.contains("product-specs")||line.contains("16 GB")||line.contains("customer_commit_display")
||line.contains("freeshipping")||line.contains("32 GB")||line.contains("8 GB")){
outStr += line+"\r\n";
}
}
text=getTextFornHtml("(<[^>]+>)||(/[^>]+>||\\t+||\\s+)", outStr);
text=">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n"+text;
text=text+">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\r\n\r\n";
if(text.indexOf("24")!=text.lastIndexOf("24")){
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd HH:mm:ss");
Date date= new Date();
String currentDate = sdf.format(date);
text="有货啦:"+currentDate+"\r\n"+text;
writeToTmpFile(text,f);
}
System.out.println(text.trim());
System.out.println("\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n");
//getIphone4MarketInfo(f);
br.close();
Thread.sleep(10 * 1000L);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
// public static void sendMail(String to, String toName,String subject, String body ) {
// try {
// Properties prop = System.getProperties();
//// prop.put( "mail.smtp.auth ", "true ");
//// prop.setProperty("proxySet", "true");
//// //设置http访问要使用的代理服务器的地址
//// prop.setProperty("socksProxyHost", "10.17.171.10");
// //设置http访问要使用的代理服务器的端口
//// prop.setProperty("socksProxyPort", "8080");
// HtmlEmail email = new HtmlEmail();
// email.setHostName("localhost");//设置发信的smtp服务器
// email.addTo(to, toName);//设置收件人帐号和收件人
// email.setFrom("vbtboy@126.com", "aaa");//设置发信的邮件帐号和发信人
// email.setSubject(subject);//设置邮件主题
// email.setAuthentication("aaa","111111");//如果smtp服务器需要认证的话,在这里设置帐号、密码
// email.setHtmlMsg(body);//设置邮件正文和字符编码
// email.send();
// } catch (EmailException e) {
// e.printStackTrace();
// }
}
- 官网查看iphone货源.rar (5.4 KB)
- 下载次数: 5
- 数据采集.rar (654 Bytes)
- 下载次数: 1
发表评论
-
JS增加TABLE行
2013-08-15 17:06 479<html> <head> <s ... -
java设计模式
2011-03-03 10:33 695http://zohan.group.iteye.com/gr ... -
给 Table 增加行的 JavaScript 函数
2011-02-21 17:51 810function addRowToTable(strTable ... -
ajax学习
2011-02-11 14:43 629var xmlRequest; function ajax ... -
JAVA编程思想[第四版]
2011-01-06 10:52 634JAVA编程思想[第四版] -
Android学习资料
2010-12-23 10:19 9181. 用户点击“计算“按钮。 2. ... -
从网上找到用java给zip文件加密的方法
2010-12-02 13:51 1901从网上找到用java给zip文件加密的方法,并且可以用winr ... -
用ant来解压文件
2010-11-16 09:47 848最近在做一个项目要用到java来解压zip文件,但是java的 ... -
在命令行执行jar中的main方法
2010-09-19 16:42 1206首先用winrar打开jar包,里面有个mate-inf文件夹 ... -
xpath小例子
2010-09-08 16:56 781package com.myapp.utils; impor ... -
用jsp生成excel文件
2010-08-24 16:09 729当我们把web页面上的数据导成excel形式时,有时候我们的数 ... -
java生成json数据
2010-06-07 15:51 4696response.setContentType("a ... -
jadclipse反编译工具在eclipse中的使用
2010-03-24 17:28 678jadclipse反编译工具在eclipse中的使用 1.将j ... -
Ant编译项目资源不足
2010-03-22 16:55 2079转: 今天用ant编译项目出现 [javac] 系统资源不足。 ... -
一个用java解析xsl文件小例子
2010-03-18 14:55 6080import java.io.ByteArrayOutput ... -
Collections排序测试
2010-03-18 11:35 697import java.text.SimpleDateForm ...
相关推荐
标题中的“监测程序实现对程序的监测”是一个关于软件开发的话题,主要涉及到程序监控和管理。在IT领域,这样的功能通常用于系统管理、故障排查或性能优化,它允许开发者或系统管理员实时了解程序的运行状态,包括但...
HViewer是一款专门用来进行Windows程序的句柄资源监测的软件,但不能对指定进程的句柄资源进行自动的监测,为此我写了一个HViewerSpy程序来辅助进行自动监测。使用方法是启动HViewer程序,并选择好需要进行监测的...
在职责分配方面,综合办公室承担着多项关键任务,包括运行控制程序的监督、环保法律法规遵循情况的定期评价、目标与指标完成情况的监控,以及联系环保部门进行定期监测。技术质量科则专门负责监测设备的外部校准工作...
在"基于物联网的智慧农业监测系统微信小程序端代码"中,我们可以看到以下几个关键组成部分: 1. **app.js**:这是微信小程序的主入口文件,包含了全局配置和事件处理函数。开发者在此定义全局变量、注册全局函数,...
Qt 写的一个测试小程序,用来实时监测电脑所有的U盘或者移动磁盘的个数及容量。启动软件时获取电脑所有的移动磁盘,并分别存储各个移动磁盘的可用容量和总容量。并且监控U盘的拔插,实时更新当前电脑U盘个数及他们的...
监测程序详细介绍,源代码 在编写这个软件的过程中遇到很多问题,发现网上也有很多人一样也遇到这些问题。 如:1快捷键的设置; 2 往txt文件里面一行行的读取、删除、添加字符串等; 3 根据程序路径名以及程序名判断...
这是一个采用.net4.0框架开发的Winform程序,可针对Windows系统的服务和IIS网站【应用程序池】进行实时监测,当程序检测到指定的服务或IIS网站【应用程序池】停止以后则自动重启,以此来保证业务系统服务的平稳运行...
这是一个采用.net4.0框架开发的Winform程序,可针对Windows系统的服务和IIS网站【应用程序池】进行实时监测,当程序检测到指定的服务或IIS网站【应用程序池】停止以后则自动重启,以此来保证业务系统服务的平稳运行...
本程序涵盖了从监测业务的受理、合同评审、监测任务的下达、样品管理、监测前准备、监测过程、监测报告的编制、审核与批准,以及后续的报告发送、样品处理和相关记录的保存等多个环节。 1. **监测业务受理**: - ...
环境监测微信小程序是一款专为环境监控设计的轻量级应用,它基于微信小程序平台开发,让用户无需下载安装即可使用,方便快捷。这款小程序的核心功能是实时展示环境数据,包括空气质量、温度、湿度、噪声等参数,有助...
标题中的“监测IIS应用程序池小工具”是指一个专门用于监控Internet Information Services (IIS)应用程序池状态的小型软件。IIS是微软公司提供的一款强大的Web服务器,它为各种网络应用提供服务,而应用程序池...
基于微信平台的宠物监测小程序简化 (源码 + 说明文档 +演示视频) 宠物监测小程序 (1)登录注册模块:用户可以注册登录自己的账号,查看个人信息和宠物信息,修改个人信息和宠物信息 密码修改等; (2)宠物信息...
针对人们对宠物缺乏精力照顾,以及传统动宠物代养不方便实时了解宠物的状态等问题,本文设计出一个包含宠物信息维护模块、健康监测模块的宠物健康监测小程序,以此帮助人们在忙于生活的同时,也能更好的实时了解自己...
"医疗监测程序VC++" 是一个专为这一目的设计的软件应用,它利用贝泰监测硬件平台来获取和分析心电图(ECG)、血压和血氧饱和度等关键生命体征数据。该程序由C++编程语言开发,充分体现了VC++在系统级编程和高性能...
一个监测鼠标键盘的小程序,调试程序时,可以让你监测按下了那些按键,
系统每隔一段时间会通过wifi自动发送到腾讯云物联网平台,在手机APP上或者微信小程序上都可以实时查看到温度,从而实现对室内环境的监测及报警功能。 上传到CSDN的项目资源,都会有一份完整项目设计文档和一份项目...
4. **电源管理**:系统需要一个稳定可靠的电源,通常使用直流电源并配备稳压电路,确保在各种环境下都能正常工作。 此外,系统可能还包括串行通信接口,用于与上位机或其他设备交换数据,例如将超重记录上传至后台...
同时,设计了9个功能键键盘程序,用户可以通过按键选择不同的监测模式或设置参数,增强了操作的灵活性。 此外,该装置还集成了MODBUS通信协议,这是工业领域广泛应用的一种串行通信协议,允许设备之间进行数据交换...