广告位联系
返回顶部
分享到

利用Qt实现FTP服务器并支持多客户端登录

C语言 来源:互联网 作者:佚名 发布时间:2024-12-29 22:26:06 人浏览
摘要

一、效果展示 二、源码实现 由于源码较多,只分享其中一部分 ftpserverwidget.h 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 5

一、效果展示

二、源码实现

由于源码较多,只分享其中一部分

ftpserverwidget.h

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

#ifndef FTPSERVERWIDGET_H

#define FTPSERVERWIDGET_H

 

#include <QWidget>

#include <QGridLayout>

#include <QHBoxLayout>

#include <QLabel>

#include <QLineEdit>

#include <QPushButton>

#include <QToolButton>

#include <QFileDialog>

#include <QRegularExpression>

#include <QRegularExpressionValidator>

#include <QMessageBox>

#include <QFileInfo>

#include <QHostInfo>

 

#include "ftpServer/ftpserver.h"

 

 

 

class FtpServerWidget : public QWidget

{

    Q_OBJECT

    Q_PROPERTY(QString ip READ get_ip WRITE set_ip)

    Q_PROPERTY(QString port READ get_port WRITE set_port)

    Q_PROPERTY(QString userName READ get_user_name WRITE set_user_name)

    Q_PROPERTY(QString password READ get_password WRITE set_password)

    Q_PROPERTY(QString path READ get_path WRITE set_path)

signals:

    void para_changed();

public:

    explicit FtpServerWidget(QWidget *parent = nullptr);

    ~FtpServerWidget();

 

    bool set_ftp_para(QString ip,QString port,QString userName,QString password,QString path);

 

    bool ftp_start_server();

    bool ftp_stop_server();

 

    QString get_ip();

    void set_ip(QString val);

    QString get_port();

    void set_port(QString val);

    QString get_user_name();

    void set_user_name(QString val);

    QString get_password();

    void set_password(QString val);

    QString get_path();

    void set_path(QString val);

protected:

    void showEvent(QShowEvent *event) override;

    void closeEvent(QCloseEvent *event) override;

private:

    void value_init();

    void control_init();

private slots:

  void btn_click_slot();

  void dir_select_slot(const QString &directory);

 

private:

    QGridLayout *gridLayout;

    QHBoxLayout *horizontalLayout;

    QLabel *label;

    QLineEdit *lineEditIp;

    QHBoxLayout *horizontalLayout_2;

    QLabel *label_2;

    QLineEdit *lineEditPort;

    QHBoxLayout *horizontalLayout_3;

    QLabel *label_3;

    QLineEdit *lineEditUser;

    QHBoxLayout *horizontalLayout_4;

    QLabel *label_4;

    QLineEdit *lineEditPassward;

    QHBoxLayout *horizontalLayout_6;

    QLabel *label_6;

    QLineEdit *lineEditPath;

    QPushButton *btnSelectPath;

    QHBoxLayout *horizontalLayout_7;

    QPushButton *btnCancel;

    QPushButton *btnConfirm;

 

    QFileDialog *dirSelectDlg;

    QMessageBox *paraMessageBox;

 

 

    QString ftpIp = nullptr;

    QString ftpPort = nullptr;

    QString ftpUserName = nullptr;

    QString ftpPassword = nullptr;

    QString ftpPath = nullptr;

 

    FtpServer *ftpServer = nullptr;

 

};

 

#endif // FTPSERVERWIDGET_H

ftpserverwidget.cpp

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

#include "ftpserverwidget.h"

 

 

FtpServerWidget::FtpServerWidget(QWidget *parent)

    : QWidget{parent}

{

    this->value_init();

    this->control_init();

}

 

FtpServerWidget::~FtpServerWidget()

{

    this->ftp_stop_server();

}

 

 

void FtpServerWidget::value_init()

{

    this->ftpIp = "127.0.0.1";

}

 

void FtpServerWidget::control_init()

{

    this->resize(450, 330);

    this->setMinimumSize(QSize(450, 330));

    this->setMaximumSize(QSize(500, 380));

    this->setWindowTitle(tr("FTP服务器参数设置"));

 

    gridLayout = new QGridLayout();

    gridLayout->setObjectName(QString::fromUtf8("gridLayout"));

 

    horizontalLayout = new QHBoxLayout();

    horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));

 

    label = new QLabel();

    label->setText(tr("服务器IP:"));

    label->setObjectName(QString::fromUtf8("label"));

    label->setAlignment(Qt::AlignCenter);

 

    horizontalLayout->addWidget(label);

 

    lineEditIp = new QLineEdit();

    lineEditIp->setObjectName(QString::fromUtf8("lineEditIp"));

 

    horizontalLayout->addWidget(lineEditIp);

 

    horizontalLayout->setStretch(0, 1);

    horizontalLayout->setStretch(1, 4);

 

    gridLayout->addLayout(horizontalLayout, 0, 0, 1, 1);

 

    horizontalLayout_2 = new QHBoxLayout();

    horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));

 

    label_2 = new QLabel();

    label_2->setText(tr("服务器端口:"));

    label_2->setObjectName(QString::fromUtf8("label_2"));

    label_2->setAlignment(Qt::AlignCenter);

 

    horizontalLayout_2->addWidget(label_2);

 

    lineEditPort = new QLineEdit();

    lineEditPort->setObjectName(QString::fromUtf8("lineEditPort"));

 

    horizontalLayout_2->addWidget(lineEditPort);

 

    horizontalLayout_2->setStretch(0, 1);

    horizontalLayout_2->setStretch(1, 4);

 

    gridLayout->addLayout(horizontalLayout_2, 1, 0, 1, 1);

 

    horizontalLayout_3 = new QHBoxLayout();

    horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));

 

    label_3 = new QLabel();

    label_3->setText(tr("用户名:"));

    label_3->setObjectName(QString::fromUtf8("label_3"));

    label_3->setAlignment(Qt::AlignCenter);

 

    horizontalLayout_3->addWidget(label_3);

 

    lineEditUser = new QLineEdit();

    lineEditUser->setObjectName(QString::fromUtf8("lineEditUser"));

 

    horizontalLayout_3->addWidget(lineEditUser);

 

    horizontalLayout_3->setStretch(0, 1);

    horizontalLayout_3->setStretch(1, 4);

 

    gridLayout->addLayout(horizontalLayout_3, 2, 0, 1, 1);

 

    horizontalLayout_4 = new QHBoxLayout();

    horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));

 

    label_4 = new QLabel();

    label_4->setText(tr("登录密码:"));

    label_4->setObjectName(QString::fromUtf8("label_4"));

    label_4->setAlignment(Qt::AlignCenter);

 

    horizontalLayout_4->addWidget(label_4);

 

    lineEditPassward = new QLineEdit();

    lineEditPassward->setObjectName(QString::fromUtf8("lineEditPassward"));

 

    horizontalLayout_4->addWidget(lineEditPassward);

 

    horizontalLayout_4->setStretch(0, 1);

    horizontalLayout_4->setStretch(1, 4);

 

    gridLayout->addLayout(horizontalLayout_4, 3, 0, 1, 1);

 

    horizontalLayout_6 = new QHBoxLayout();

    horizontalLayout_6->setObjectName(QString::fromUtf8("horizontalLayout_6"));

 

    label_6 = new QLabel();

    label_6->setText(tr("文件路径:"));

    label_6->setObjectName(QString::fromUtf8("label_6"));

    label_6->setAlignment(Qt::AlignCenter);

 

    horizontalLayout_6->addWidget(label_6);

 

    lineEditPath = new QLineEdit();

    lineEditPath->setObjectName(QString::fromUtf8("lineEditPath"));

    QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);

    sizePolicy.setHorizontalStretch(0);

    sizePolicy.setVerticalStretch(0);

    sizePolicy.setHeightForWidth(lineEditPath->sizePolicy().hasHeightForWidth());

    lineEditPath->setSizePolicy(sizePolicy);

 

    horizontalLayout_6->addWidget(lineEditPath);

 

    btnSelectPath = new QPushButton();

    btnSelectPath->setText(tr("..."));

    btnSelectPath->setObjectName(QString::fromUtf8("toolBtnSelectPath"));

    btnSelectPath->setMinimumSize(QSize(82, 0));

 

    horizontalLayout_6->addWidget(btnSelectPath);

 

    horizontalLayout_6->setStretch(0, 1);

    horizontalLayout_6->setStretch(1, 3);

    horizontalLayout_6->setStretch(2, 1);

 

    gridLayout->addLayout(horizontalLayout_6, 4, 0, 1, 1);

 

    horizontalLayout_7 = new QHBoxLayout();

    horizontalLayout_7->setObjectName(QString::fromUtf8("horizontalLayout_7"));

 

    btnCancel = new QPushButton();

    btnCancel->setText(tr("取消"));

    btnCancel->setObjectName(QString::fromUtf8("btnCancel"));

    QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Fixed);

    sizePolicy1.setHorizontalStretch(0);

    sizePolicy1.setVerticalStretch(0);

    sizePolicy1.setHeightForWidth(btnCancel->sizePolicy().hasHeightForWidth());

    btnCancel->setSizePolicy(sizePolicy1);

    btnCancel->setMinimumSize(QSize(0, 50));

 

    horizontalLayout_7->addWidget(btnCancel);

 

    btnConfirm = new QPushButton();

    btnConfirm->setText(tr("确定"));

    btnConfirm->setObjectName(QString::fromUtf8("btnConfirm"));

    sizePolicy1.setHeightForWidth(btnConfirm->sizePolicy().hasHeightForWidth());

    btnConfirm->setSizePolicy(sizePolicy1);

    btnConfirm->setMinimumSize(QSize(0, 50));

 

    horizontalLayout_7->addWidget(btnConfirm);

 

 

    gridLayout->addLayout(horizontalLayout_7, 5, 0, 1, 1);

 

    this->setLayout(gridLayout);

    //限制lineedit格式输入

    QRegularExpression regIpStr("(\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.(\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])");

    QValidator * validator = new QRegularExpressionValidator(regIpStr, this->lineEditIp);

    this->lineEditIp->setValidator(validator);

 

    this->lineEditPort->setValidator(new QIntValidator(0,65535,this->lineEditPort));

 

 

    QRegularExpression regUserStr("[a-zA-Z0-9]+$");

    validator = new QRegularExpressionValidator(regUserStr, this->lineEditUser);

    this->lineEditUser->setValidator(validator);

    this->lineEditPassward->setValidator(validator);

    this->lineEditUser->setMaxLength(8);

    this->lineEditPassward->setMaxLength(8);

 

    this->lineEditIp->setPlaceholderText(tr("请输入服务器IP地址!"));

    this->lineEditPort->setPlaceholderText(tr("请输入服务器端口!"));

    this->lineEditUser->setPlaceholderText(tr("请输入登录用户名!"));

    this->lineEditPassward->setPlaceholderText(tr("请输入登录密码!"));

    this->lineEditPath->setPlaceholderText(tr("请输入文件路径!"));

 

    this->lineEditIp->setStyleSheet("border:2px groove gray;border-radius:8px;padding:2px 4px;border-style: outset;");

    this->lineEditPort->setStyleSheet("border:2px groove gray;border-radius:8px;padding:2px 4px;border-style: outset;");

    this->lineEditUser->setStyleSheet("border:2px groove gray;border-radius:8px;padding:2px 4px;border-style: outset;");

    this->lineEditPassward->setStyleSheet("border:2px groove gray;border-radius:8px;padding:2px 4px;border-style: outset;");

    this->lineEditPath->setStyleSheet("border:2px groove gray;border-radius:8px;padding:2px 4px;border-style: outset;");

 

    this->lineEditIp->setReadOnly(true);

 

 

    //路径选择dialog初始化

    this->dirSelectDlg = new QFileDialog(this);

    this->dirSelectDlg->setFileMode(QFileDialog::Directory);

    this->dirSelectDlg->setWindowTitle(tr("请选择一个文件夹!"));

    this->dirSelectDlg->setModal(false);

    this->dirSelectDlg->close();

    connect(this->dirSelectDlg,&QFileDialog::fileSelected,this,&FtpServerWidget::dir_select_slot);

    //错误提示messagebox初始化

    this->paraMessageBox = new QMessageBox(this);

    this->paraMessageBox->setModal(false);

    this->paraMessageBox->setWindowTitle(tr("参数错误!"));

    this->paraMessageBox->setIcon(QMessageBox::Warning);

    this->paraMessageBox->setMinimumSize(500,100);

    this->paraMessageBox->close();

 

 

    connect(this->btnConfirm,&QPushButton::clicked,this,&FtpServerWidget::btn_click_slot);

    connect(this->btnCancel,&QPushButton::clicked,this,&FtpServerWidget::btn_click_slot);

    connect(this->btnSelectPath,&QPushButton::clicked,this,&FtpServerWidget::btn_click_slot);

 

}

bool FtpServerWidget::set_ftp_para(QString ip, QString port, QString userName, QString password, QString path)

{

 

    qDebug()<<"ip:"<<ip<<"  port:"<<port<<"  userName:"<<userName<<"  password:"<<password<<"  path:"<<path;

    if(ip == nullptr)

    {

        this->paraMessageBox->setText(tr("IP不能为空!"));

        this->paraMessageBox->show();

        return false;

    }

    if(port == nullptr)

    {

        this->paraMessageBox->setText(tr("端口设置不能为空!"));

        this->paraMessageBox->show();

        return false;

    }

    if(port.toUInt() >65535)

    {

        this->paraMessageBox->setText(tr("端口值设置错误!"));

        this->paraMessageBox->show();

        return false;

    }

    if(userName == nullptr)

    {

        this->paraMessageBox->setText(tr("用户名不能为空!"));

        this->paraMessageBox->show();

        return false;

    }

    if(password == nullptr)

    {

        this->paraMessageBox->setText(tr("用户密码不能为空!"));

        this->paraMessageBox->show();

        return false;

    }

    if(path == nullptr)

    {

        this->paraMessageBox->setText(tr("路径不能为空!"));

        this->paraMessageBox->show();

        return false;

    }

    QFileInfo info(path);

    if(!info.exists())

    {

        this->paraMessageBox->setText(tr("路径不存在!"));

        this->paraMessageBox->show();

        return false;

    }

 

 

    this->ftpIp = ip;

    this->ftpPort = port;

    this->ftpUserName = userName;

    this->ftpPassword = password;

    this->ftpPath = path;

    return true;

}

 

bool FtpServerWidget::ftp_start_server()

{

    if(this->ftpIp == nullptr)

    {

        return false;

    }

    if(this->ftpPort == nullptr)

    {

        return false;

    }

    if(this->ftpPort.toUInt() >65535)

    {

        return false;

    }

    if(this->ftpUserName == nullptr)

    {

        return false;

    }

    if(this->ftpPassword == nullptr)

    {

        return false;

    }

    if(this->ftpPath == nullptr)

    {

        return false;

    }

    QFileInfo info(this->ftpPath);

    if(!info.exists())

    {

        return false;

    }

 

    if (this->ftpServer !=nullptr)

    {

        qDebug() << "服务器已经启动";

        return true;

    }

    this->ftpServer = new FtpServer(this, this->ftpPath, this->ftpPort.toInt(), this->ftpUserName, this->ftpPassword);

    //connect(m_server, SIGNAL(newPeerIp(QString)), this, SLOT(onNewPeerIp(QString)));

 

    qDebug() << "服务器已启动";

    return true;

}

bool FtpServerWidget::ftp_stop_server()

{

    if(this->ftpServer != nullptr)

    {

        delete this->ftpServer;

        this->ftpServer = NULL;

    }

    qDebug() << "服务器已关闭";

    return true;

}

 

QString FtpServerWidget::get_ip()

{

    return this->ftpIp;

}

 

void FtpServerWidget::set_ip(QString val)

{

    this->ftpIp = val;

    emit para_changed();

}

 

QString FtpServerWidget::get_port()

{

     return this->ftpPort;

}

 

void FtpServerWidget::set_port(QString val)

{

    this->ftpPort = val;

    emit para_changed();

 

}

 

QString FtpServerWidget::get_user_name()

{

    return this->ftpUserName;

}

 

void FtpServerWidget::set_user_name(QString val)

{

    this->ftpUserName = val;

    emit para_changed();

}

 

QString FtpServerWidget::get_password()

{

    return this->ftpPassword;

}

 

void FtpServerWidget::set_password(QString val)

{

    this->ftpPassword = val;

    emit para_changed();

}

 

QString FtpServerWidget::get_path()

{

    return this->ftpPath;

}

 

void FtpServerWidget::set_path(QString val)

{

    this->ftpPath = val;

    emit para_changed();

}

 

 

 

void FtpServerWidget::btn_click_slot()

{

    QPushButton *btn = qobject_cast<QPushButton *>(sender());

    if(btn == this->btnConfirm) //确定

    {

        QString ipStr = this->lineEditIp->text();

        QString portStr = this->lineEditPort->text();

        QString userStr = this->lineEditUser->text();

        QString passwordStr = this->lineEditPassward->text();

        QString pathStr = this->lineEditPath->text();

 

 

        this->set_ftp_para(ipStr,portStr,userStr,passwordStr,pathStr);

        this->ftp_start_server();

    }

    else if(btn == this->btnCancel) //取消

    {

        this->close();

    }

    else if(btn == this->btnSelectPath) //选择路径

    {

        this->dirSelectDlg->show();

    }

}

 

void FtpServerWidget::dir_select_slot(const QString &directory)

{

    this->lineEditPath->setText(directory);

}

void FtpServerWidget::showEvent(QShowEvent *event)

{

    Q_UNUSED(event);

    if(this->ftpIp != nullptr)

    {

        this->lineEditIp->setText(this->ftpIp);

    }

    if(this->ftpPort != nullptr)

    {

        this->lineEditPort->setText(this->ftpPort);

    }

    if(this->ftpUserName !=nullptr)

    {

        this->lineEditUser->setText(this->ftpUserName);

    }

    if(this->ftpPassword != nullptr)

    {

        this->lineEditPassward->setText(this->ftpPassword);

    }

    if(this->ftpPath != nullptr)

    {

        this->lineEditPath->setText(this->ftpPath);

    }

 

}

void FtpServerWidget::closeEvent(QCloseEvent *event)

{

    Q_UNUSED(event);

    this->dirSelectDlg->close();

    this->paraMessageBox->close();

}


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。

您可能感兴趣的文章 :

原文链接 :
相关文章
  • Qt实现文件的压缩和解压缩操作

    Qt实现文件的压缩和解压缩操作
    一、实现方式 通过Qt自带的库来实现,使用多线程方式,通过信号和槽来触发压缩与解压缩,并将压缩和解压缩结果回传过来。 使用的类:
  • 利用Qt实现FTP服务器并支持多客户端登录

    利用Qt实现FTP服务器并支持多客户端登录
    一、效果展示 二、源码实现 由于源码较多,只分享其中一部分 ftpserverwidget.h 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 3
  • C++11的函数包装器std::function使用
    C++中的函数包装器(Function Wrapper)是用来封装和管理函数或可调用对象(如函数指针、函数对象、Lambda 表达式等)的工具。它们使得函数的
  • C++指针和对象成员访问的区别:`.` 与 `->` 的使
    在学习 C++ 时,常常会遇到访问对象成员的两种符号:.和-。这两个符号看似简单,但它们的正确使用却需要理解指针和对象的本质差异。对
  • C++中std::thread{}和std::thread()用法
    std::thread{}和std::thread()用法 在C++中,std::thread是用于处理线程的类。 关于std::thread{}和std::thread()的区别,主要涉及到C++11引入的统一初始化(
  • Qt实现日志文件的滚动写入
    Qt 日志文件的滚动写入 flyfish 日志文件的滚动写入功能。在日志文件达到10MB时创建新的日志文件,并且在总日志文件大小达到10GB时开始覆盖
  • Java打印星号图案和数字图案的代码
    使用循环和控制语句打印图案 在 Java 中,使用循环和控制语句是打印图案的最佳方法。循环可以帮助你重复执行一段代码,直到满足某个条
  • 解读构造函数的调用规则、深拷贝与浅拷贝

    解读构造函数的调用规则、深拷贝与浅拷贝
    1.调用规则 默认情况下,C++至少会给一个类添加三个函数: 默认构造函数(无参,函数体为空) 默认析构函数(无参,函数体为空) 默认
  • Qt音视频功能实现方法

    Qt音视频功能实现方法
    Qt 音视频 在 Qt 中,音频主要是通过QSound类来实现。但是需要注意的是QSound类只支持播放wav格式的音频文件。也就是说如果想要添加音频效果
  • C++的dynamic代码介绍
    在C++编程中,dynamic_cast是处理多态类型转换的关键工具,允许在复杂继承结构中安全地将基类指针或引用转换为派生类指针或引用。通过利
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计