登录
首页 » C# » 编写基于HTTP协议网络应用程序

编写基于HTTP协议网络应用程序

于 2022-02-03 发布 文件大小:31.22 kB
0 103
下载积分: 2 下载次数: 1

代码说明:

编写基于HTTP协议网络应用程序-prepared based on HTTP protocol network applications

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • mega8_Player_V11
    mp3 player using vs1003 atmega8 and sd card
    2009-06-11 21:38:17下载
    积分:1
  • 基于蚁群算法无人机搜索覆盖代码
    用三次样条插值法对折线路径进行平滑处理;其次,考察无人机的操作性能 (主要考虑拐弯) ,对曲线做进一步平滑处理;然后,考虑无人机飞行高度对其安全性 及操作性的影响,一方面是在威胁度计算时加入高度因素,重新进行权值计算;另一方 面是对飞机飞行高度变化进行讨论, 如无人机的最大仰角和过度地带飞机至少飞行的高 度。 由于数字地图的复杂型, 二维处理中产生的最佳路径, 在三维中并不一定是最优的, 我们经过计算,发现二维平面次优的航道才是三维最优的航道路径
    2022-03-19 05:00:34下载
    积分:1
  • 打印条形码
    打印条形码
    2016-03-09下载
    积分:1
  • sci_echoback
    dsp2812 sci的例子,希望能有帮助(dsp2812 sci example, hoping to help)
    2012-10-20 14:00:27下载
    积分:1
  • 使用stm32f103控制PN532,接收数据,完成具有NFC功能的刷卡通信
    1.使用stm32f103ret6控制PN532; 2.接收数据具有NFC功能的手机发送来的数据, 3.完成具有NFC功能的刷卡通信,以完成碰碰帖功能。
    2022-03-18 08:26:40下载
    积分:1
  • C# 套打Demo
    套打Demo 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Printing;namespace Print_Demo{ public partial class Form1 : Form { public PrintDocument printDt = new PrintDocument(); //打印文档对象 Font printFont; //打印使用的字体 public Form1() { InitializeComponent(); } void printDt_PrintPage(object sender, PrintPageEventArgs e) { float pointX = 10; float pointY = 10; e.Graphics.DrawString("打印内容", new Font("宋体", 16F), Brushes.Black, pointX 60, pointY); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 26,pointX 300,pointY 26); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 35); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 56, pointX 300, pointY 56); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 65); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 86, pointX 300, pointY 86); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 95); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 116, pointX 300, pointY 116); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 125); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 146, pointX 300, pointY 146); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 155); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 176, pointX 300, pointY 176); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 185); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 206, pointX 300, pointY 206); e.Graphics.DrawString("检测结果", printFont, Brushes.Black, pointX, pointY 233); e.Graphics.DrawString("通过", new Font("宋体",22F,FontStyle.Bold), Brushes.Black, pointX 90, pointY 225); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 265, pointX 300, pointY 265); e.Graphics.DrawString("单位名称", printFont, Brushes.Black, pointX, pointY 275); } private void Form1_Load(object sender, EventArgs e) { printDt.PrintPage = new PrintPageEventHandler(printDt_PrintPage); printFont = new Font("宋体", 12F); } private void btnPrint_Click(object sender, EventArgs e) { //PrintDialog printDlg = new PrintDialog(); //printDlg.Document = printDt; //printDlg.AllowPrintToFile = true; //printDlg.AllowCurrentPage = true; //printDlg.AllowSelection = true; //printDlg.ShowDialog(); //printDlg.ShowDialog(); printDt.Print(); } private void btnLook_Click(object sender, EventArgs e) { PrintPreviewDialog printPreview = new PrintPreviewDialog(); printPreview.PrintPreviewControl.Document = printDt; printPreview.ShowDialog(this); } }}
    2021-05-06下载
    积分:1
  • AML-Efficient-Approximate-Membership
    AML EFFICIENT APPROXIMATE MEMBERSHIP LOCALIZATION WITHIN A WEB-BASED JOIN FRAMEWORK ABSTRACT: In this paper, we propose a new type of Dictionary-based Entity Recognition Problem, named Approximate Membership Localization (AML). The popular Approximate Membership Extraction (AME) provides a full coverage to the true matched substrings from a given document, but many redundancies cause a low efficiency of the AME process and deteriorate the performance of real-world applications using the extracted substrings. The AML problem targets at locating non overlapped substrings which is a better approximation to the true matched substrings without generating overlapped redundancies. In order to perform AML efficiently, we propose the optimized algorithm P-Prune that prunes a large part of overlapped redundant matched substrings before generating them.
    2013-12-15 16:45:53下载
    积分:1
  • Abat_algorithm
    粒子群算法改进的自适应蝙蝠算法,具有很好的收敛速度和收敛精度(Improved adaptive bat algorithm based on particle swarm optimization has good convergence speed and convergence accuracy.)
    2018-06-18 19:48:56下载
    积分:1
  • Model Predictive Control
    说明:  模型预测控制simulink仿真程序,与PID做对比,验证MPC的优越性。(Model predictive control simulink simulation program, compared with PID, verifies the advantages of MPC.)
    2020-11-15 14:09:41下载
    积分:1
  • UDS1.1_51aspx
    使用MS SQL Server 作为后台数据库,C#开发的APS.NETOA系统,包括了系统管理、人事管理、项目管理、文档管理等功能-use MS SQL Server as a back-end databases, C# APS.NETOA development of the system, including system management, personnel management, project management, document management functions (The use of MS SQL Server as the back-end database, C# Development APS.NETOA system, including system management, personnel management, project management, document management and other functions-use MS SQL Server as a back-end databases, C# APS.NETOA development of the system, including system management, personnel management, project management, document management functions)
    2020-06-26 03:40:02下载
    积分:1
  • 696516资源总数
  • 106442会员总数
  • 11今日下载