using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO.Ports;
using System.Threading;
using System.Net.Sockets;
using System.Xml;
using System.Net;
using System.IO;
namespace 实验提取GPS数据1
{
public partial class Form1 : Form
{
string userName;
string passWord;
string IDcard;
string trueName;
string longitude;
string latitude;
bool finding = false;
string ip; //Ip地址
int port; //端口号
TcpClient tcpclient; //定义一个客户端
NetworkStream ns; // 提供用于网络访问的基础数据流。
StreamReader sr; // 实现一个 System.IO.TextReader,使其以一种特定的编码从字节流中读取字符。
StreamWriter sw; // 实现一个 System.IO.TextReader,使其以一种特定的编码向字节流中写入字符。
public Form1()
{
InitializeComponent();
System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = false;
}
SerialPort sp = new SerialPort();