linux使用curl命令_如何使用curl从Linux命令行下载文件

linux使用curl命令

linux使用curl命令

A terminal window on a Ubuntu-style Linux desktop.
Fatmawati Achmad Zaenuri/Shutterstock Fatmawati Achmad Zaenuri / Shutterstock

The Linux curl command can do a whole lot more than download files. Find out what curl is capable of, and when you should use it instead of wget.

Linux curl命令除了下载文件外,还可以做更多的事情。 找出curl的功能,以及何时使用它而不是wget

curl vs. wget:有什么区别? (curl vs. wget : What’s the Difference?)

People often struggle to identify the relative strengths of the wget and curl commands. The commands do have some functional overlap. They can each retrieve files from remote locations, but that’s where the similarity ends.

人们通常很难确定wgetcurl命令的相对优势。 这些命令确实有一些功能重叠。 他们每个人都可以从远程位置检索文件,但这就是相似性结束的地方。

wget is a fantastic tool for downloading content and files. It can download files, web pages, and directories. It contains intelligent routines to traverse links in web pages and recursively download content across an entire website. It is unsurpassed as a command-line download manager.

wget是 下载内容和文件的 绝佳工具 。 它可以下载文件,网页和目录。 它包含智能例程,可遍历网页中的链接并在整个网站上递归下载内容。 作为命令行下载管理器,它无与伦比。

curl satisfies an altogether different need. Yes, it can retrieve files, but it cannot recursively navigate a website looking for content to retrieve. What curl actually does is let you interact with remote systems by making requests to those systems, and retrieving and displaying their responses to you. Those responses might well be web page content and files, but they can also contain data provided via a web service or API as a result of the “question” asked by the curl request.

curl 完全满足 了不同的需求 。 是的,它可以检索文件,但是不能递归地浏览网站以查找要检索的内容。 curl实际作用是通过向远程系统发出请求,并检索和显示它们对您的响应,从而与远程系统进行交互。 这些响应很可能是网页内容和文件,但是由于curl请求提出的“问题”,它们也可能包含通过Web服务或API提供的数据。

And curl isn’t limited to websites. curl supports over 20 protocols, including HTTP, HTTPS, SCP, SFTP, and FTP. And arguably, due to its superior handling of Linux pipes, curl can be more easily integrated with other commands and scripts.

而且curl不仅限于网站。 curl支持20多种协议,包括HTTP,HTTPS,SCP,SFTP和FTP。 可以说,由于其对Linux管道的出色处理, curl可以更轻松地与其他命令和脚本集成。

The author of curl has a webpage that describes the differences he sees between curl and wget.

curl的作者提供了一个网页,该网页 描述了他看到的 curlwget之间 的差异 。

安装卷发 (Installing curl)

Out of the computers used to research this article, Fedora 31 and Manjaro 18.1.0 had curl already installed. curl had to be installed on Ubuntu 18.04 LTS. On Ubuntu, run this command to install it:

在用于研究本文的计算机中,Fedora 31和Manjaro 18.1.0已经安装了curlcurl必须在Ubuntu 18.04 LTS上安装。 在Ubuntu上,运行以下命令进行安装:

sudo apt-get install curl
sudo apt-get install curl in a terminal window

卷曲版本 (The curl Version)

The --version option makes curlreport its version. It also lists all the protocols that it supports.

--version选项使curl报告其版本。 它还列出了它支持的所有协议。

curl --version
curl --version in a terminal window

检索网页 (Retrieving a Web Page)

If we point curl at a web page, it will retrieve it for us.

如果我们将curl指向网页,它将为我们检索它。

curl https://www.bbc.com
curl https://www.bbc.com in a terminal window

But its default action is to dump it to the terminal window as source code.

但是它的默认操作是将其作为源代码转储到终端窗口中。

Output from curl displaying web page source code in a terminal window

Beware: If you don’t tell curl you want something stored as a file, it will always dump it to the terminal window. If the file it is retrieving is a binary file, the outcome can be unpredictable. The shell may try to interpret some of the byte values in the binary file as control characters or escape sequences.

当心 :如果您不告诉curl您希望将某些内容存储为文件,它将始终将其转储到终端窗口中。 如果要检索的文件是二进制文件,则结果可能无法预测。 Shell可能会尝试将二进制文件中的某些字节值解释为控制字符或转义序列。

将数据保存到文件 (Saving Data to a File)

Let’s tell curl to redirect the output into a file:

让我们告诉curl将输出重定向到文件中:

curl https://www.bbc.com  > bbc.html
curl https://www.bbc.com > bbc.html in a terminal window

This time we don’t see the retrieved information, it is sent straight to the file for us. Because there is no terminal window output to display, curl outputs a set of progress information.

这次我们看不到检索到的信息,它会直接发送给我们。 因为没有要显示的终端窗口输出,所以curl输出一组进度信息。

It didn’t do this in the previous example because the progress information would have been scattered throughout the web page source code, so curl automatically suppressed it.

在上一个示例中,它没有这样做,因为进度信息会分散在整个网页源代码中,因此curl自动抑制了它。

In this example, curl detects that the output is being redirected to a file and that it is safe to generate the progress information.

在此示例中, curl检测到输出已重定向到文件,并且可以安全地生成进度信息。

curl download progress meter in a terminal window

The information provided is:

提供的信息是:

  • % Total: The total amount to be retrieved.

    %Total :要检索的总数。

  • % Received: The percentage and actual values of the data retrieved so far.

    收到的百分比:到目前为止检索到的数据的百分比和实际值。

  • % Xferd: The percent and actual sent, if data is being uploaded.

    %Xferd :如果正在上传数据,则发送的百分比和实际发送的百分比。

  • Average Speed Dload: The average download speed.

    平均速度Dload :平均下载速度。

  • Average Speed Upload: The average upload speed.

    平均上传速度:平均上传速度。

  • Time Total: The estimated total duration of the transfer.

    总时间 :估计的总传输时间。

  • Time Spent: The elapsed time so far for this transfer.

    花费的时间:到目前为止,此传输已用的时间。

  • Time Left: The estimated time left for the transfer to complete

    剩余时间 :完成传输所需的估计时间

  • Current Speed: The current transfer speed for this transfer.

    当前速度 :此传输的当前传输速度。

Because we redirected the output from curl to a file, we now have a file called “bbc.html.”

因为我们将输出从curl重定向到了一个文件,所以现在有了一个名为“ bbc.html”的文件。

bbc.html file created by curl.

Double-clicking that file will open your default browser so that it displays the retrieved web page.

双击该文件将打开您的默认浏览器,以显示检索到的网页。

Retrieved web page disdplayed in a browser window.

Note that the address in the browser address bar is a local file on this computer, not a remote website.

请注意,浏览器地址栏中的地址是此计算机上的本地文件,而不是远程网站。

We don’t have to redirect the output to create a file. We can create a file by using the -o (output) option, and telling curl to create the file. Here we’re using the -o option and providing the name of the file we wish to create “bbc.html.”

我们不必重定向输出即可创建文件。 我们可以通过使用-o (输出)选项来创建文件,并告诉curl创建文件。 在这里,我们使用-o选项,并提供我们要创建的文件名“ bbc.html”。

curl -o bbc.html https://www.bbc.com
curl -o bbc.html https://www.bbc.com in a terminal window

使用进度条监视下载 (Using a Progress Bar To Monitor Downloads)

To have the text-based download information replaced by a simple progress bar, use the -# (progress bar) option.

要将简单的进度条替换为基于文本的下载信息,请使用-# (进度条)选项。

curl -x -o bbc.html https://www.bbc.com
curl -x -o bbc.html https://www.bbc.com in a terminal window

重新启动中断的下载 (Restarting an Interrupted Download)

It is easy to restart a download that has been terminated or interrupted. Let’s start a download of a sizeable file. We’ll use the latest Long Term Support build of Ubuntu 18.04. We’re using the --output option to specify the name of the file we wish to save it into: “ubuntu180403.iso.”

重新启动已终止或中断的下载很容易。 让我们开始下载一个较大的文件。 我们将使用最新的Ubuntu 18.04长期支持构建。 我们正在使用--output选项来指定要保存到的文件的名称:“ ubuntu180403.iso”。

curl --output ubuntu18043.iso http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso
curl --output ubuntu18043.iso http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso in a terminal window

The download starts and works its way towards completion.

下载开始,并逐步完成。

Progess of a large download in a terminal widnow

If we forcibly interrupt the download with Ctrl+C , we’re returned to the command prompt, and the download is abandoned.

如果使用Ctrl+C强制中断下载,则返回到命令提示符,并且放弃下载。

To restart the download, use the -C (continue at) option. This causes curl to restart the download at a specified point or offset within the target file. If you use a hyphen - as the offset, curl will look at the already downloaded portion of the file and determine the correct offset to use for itself.

要重新开始下载,请使用-C (继续)选项。 这将导致curl在目标文件中的指定点或偏移处重新开始下载。 如果使用连字符-作为偏移量, curl将查看文件的已下载部分,并确定要用于其自身的正确偏移量。

curl -C - --output ubuntu18043.iso http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso
curl -C - --output ubuntu18043.iso http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso ina terminal window

The download is restarted. curl reports the offset at which it is restarting.

重新开始下载。 curl报告重新启动的偏移量。

curl -C - --output ubuntu18043.iso http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso in a terminal window

检索HTTP标头 (Retrieving HTTP headers)

With the -I (head) option, you can retrieve the HTTP headers only. This is the same as sending the HTTP HEAD command to a web server.

使用-I (头)选项,您只能检索HTTP标头。 这与将 HTTP HEAD命令发送到Web服务器相同。

curl -I www.twitter.com
curl -I www.twitter.com in a terminal window

This command retrieves information only; it does not download any web pages or files.

该命令仅检索信息; 它不会下载任何网页或文件。

Output from curl -I www.twitter.com in a terminal window

下载多个URL (Downloading Multiple URLs)

Using xargs we can download multiple URLs at once. Perhaps we want to download a series of web pages that make up a single article or tutorial.

使用xargs我们可以一次下载多个 URL 。 也许我们想下载构成单个文章或教程的一系列网页。

Copy these URLs to an editor and save it to a file called “urls-to-download.txt.” We can use xargs to treat the content of each line of the text file as a parameter which it will feed to curl, in turn.

将这些URL复制到编辑器,然后将其保存到名为“ urls-to-download.txt”的文件中。 我们可以使用xargs将文本文件 每一行的内容视为一个参数,然后将其馈送到curl

https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#0
https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#1
https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#2
https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#3
https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#4
https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#5

This is the command we need to use to have xargs pass these URLs to curl one at a time:

这是我们需要用来使xargs传递这些URL来一次curl一个的命令:

xargs -n 1 curl -O < urls-to-download.txt

Note that this command uses the -O (remote file) output command, which uses an uppercase “O.” This option causes curl to save the retrieved  file with the same name that the file has on the remote server.

请注意,此命令使用-O (远程文件)输出命令,该命令使用大写的“ O”。 此选项使curl可以使用与远程服务器上文件相同的名称来保存检索到的文件。

The -n 1 option tells xargs to treat each line of the text file as a single parameter.

-n 1选项告诉xargs将文本文件的每一行视为一个参数。

When you run the command, you’ll see multiple downloads start and finish, one after the other.

运行命令时,您会看到多次下载开始和结束,一个接一个。

Output from xargs and curl downloading multiple files

Checking in the file browser shows the multiple files have been downloaded. Each one bears the name it had on the remote server.

在文件浏览器中签入显示多个文件已下载。 每个人都有它在远程服务器上拥有的名称。

downloaded file sin the nautilus file browser

从FTP服务器下载文件 (Downloading Files From an FTP Server)

Using curl with a File Transfer Protocol (FTP) server is easy, even if you have to authenticate with a username and password. To pass a username and password with curl use the -u (user) option, and type the username, a colon “:”, and the password. Don’t put a space before or after the colon.

即使必须使用用户名和密码进行身份验证,也可以将curl与 文件传输协议 (FTP)服务器一起使用很容易。 要使用curl传递用户名和密码,请使用-u (用户)选项,然后键入用户名,冒号“:”和密码。 不要在冒号之前或之后放置空格。

This is a free-for-testing FTP server hosted by Rebex. The test FTP site has a pre-set username of “demo”, and the password is “password.” Don’t use this type of weak username and password on a production or “real” FTP server.

这是 Rebex托管的免费测试FTP服务器。 测试FTP站点的预设用户名是“ demo”,密码是“ password”。 不要在生产或“真实” FTP服务器上使用这种类型的弱用户名和密码。

curl -u demo:password ftp://test.rebex.net
curl -u demo:password ftp://test.rebex.net in a terminal window

curl figures out that we’re pointing it at an FTP server, and returns a list of the files that are present on the server.

curl指出我们将其指向FTP服务器,并返回该服务器上存在的文件的列表。

List of files on a remtoe FTP server ina terminal window

The only file on this server is a “readme.txt” file, of 403 bytes in length. Let’s retrieve it. Use the same command as a moment ago, with the filename appended to it:

该服务器上唯一的文件是“ readme.txt”文件,其长度为403个字节。 让我们取回它。 使用与之前相同的命令,并附加文件名:

curl -u demo:password ftp://test.rebex.net/readme.txt
curl -u demo:password ftp://test.rebex.net/readme.txt in a terminal window

The file is retrieved and curl displays its contents in the terminal window.

检索文件,然后curl在终端窗口中显示其内容。

The contents of a file retrieved from an FTP server displayed in a terminal window

In almost all cases, it is going to be more convenient to have the retrieved file saved to disk for us, rather than displayed in the terminal window. Once more we can use the -O (remote file) output command to have the file saved to disk, with the same filename that it has on the remote server.

在几乎所有情况下,将检索到的文件保存给我们磁盘而不是显示在终端窗口中将更加方便。 再一次,我们可以使用-O (远程文件)输出命令将文件保存到磁盘,文件名与远程服务器上的文件名相同。

curl -O -u demo:password ftp://test.rebex.net/readme.txt
curl -O -u demo:password ftp://test.rebex.net/readme.txt in a terminal window

The file is retrieved and saved to disk. We can use ls to check the file details. It has the same name as the file on the FTP server, and it is the same length, 403 bytes.

检索文件并将其保存到磁盘。 我们可以使用ls检查文件详细信息。 它与FTP服务器上的文件具有相同的名称,并且长度相同,为403个字节。

ls -hl readme.txt
ls -hl readme.txt in a terminal window

将参数发送到远程服务器 (Sending Parameters to Remote Servers)

Some remote servers will accept parameters in requests that are sent to them. The parameters might be used to format the returned data, for example, or they may be used to select the exact data that the user wishes to retrieve. It is often possible to interact with web application programming interfaces (APIs) using curl.

某些远程服务器将在发送给它们的请求中接受参数。 例如,参数可用于格式化返回的数据,或者可用于选择用户希望检索的确切数据。 通常可以使用curl与Web 应用程序编程接口 (API)进行交互。

As a simple example, the  ipify website has an API can be queried to ascertain your external IP address.

作为一个简单示例,可以查询 ipify网站上的API,以确定您的外部IP地址。

curl https://api.ipify.org

By adding the format parameter to the command, with the value of “json” we can again request our external IP address, but this time the returned data will be encoded in the  JSON format.

通过在命令中添加format参数,并使用“ json”的值,我们可以再次请求我们的外部IP地址,但是这次返回的数据将以 JSON格式编码。

curl https://api.ipify.org?format=json
curl https://api.ipify.org in a terminal window

Here’s another example that makes use of a Google API. It returns a JSON object describing a book. The parameter you must provide is the International Standard Book Number (ISBN) number of a book. You can find these on the back cover of most books, usually below a barcode. The parameter we’ll use here is “0131103628.”

这是另一个利用Google API的示例。 它返回描述一本书的JSON对象。 您必须提供的参数是一本书的 国际标准书号 (ISBN)编号。 您可以在大多数书籍的封底中找到这些书,通常在条形码下方。 我们将在此处使用的参数是“ 0131103628”。

curl https://www.googleapis.com/books/v1/volumes?q=isbn:0131103628
curl https://www.googleapis.com/books/v1/volumes?q=isbn:0131103628 in a terminal window

The returned data is comprehensive:

返回的数据是全面的:

Google book API data displayed in a terminal window

有时卷曲,有时wget (Sometimes curl, Sometimes wget)

If I wanted to download content from a website and have the tree-structure of the website searched recursively for that content, I’d use wget.

如果我想从网站上下载内容并递归搜索该内容的网站树结构,则可以使用wget

If I wanted to interact with a remote server or API, and possibly download some files or web pages, I’d use curl. Especially if the protocol was one of the many not supported by wget.

如果我想与远程服务器或API交互,并可能下载一些文件或网页,则可以使用curl 。 特别是如果协议是wget不支持的众多协议之一。

翻译自: https://www.howtogeek.com/447033/how-to-use-curl-to-download-files-from-the-linux-command-line/

linux使用curl命令

culul01313
关注 关注
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Linux篇之命令行下载远程文件curl命令的介绍与使用
小橙子的笔记屋
08-20 4883
一、curl简介 通常情况下,当我们不想在本机下载文件,上传至服务器时,觉得这样过于麻烦,步骤繁琐。 那么该怎么办呢? 在Linux中,服务器下载文件,提供了一种curl命令,它可以实现Linux中进行命令行下载远程文件,相当于利用URL规则在命令行下工作的文件传输工具,是 一款很强大的http命令行工具。 二、curl使用 1、基本使用 curl http://www.baidu.com 执行后,www.baidu.com 的html 就会显示在屏幕上,如下: 注:因为在安装Linux服务器的时候是
linux下用curl实现远程下载文件代码
09-16
linux下(需要安装curl库),通过curl通过https协议,实现远程下载文件。测试时将宏定义中的地址和文件名修改为自己想要测试的即可。带有一定注释。
Linux基础命令-curl
weixin_41989934的博客
09-20 197
Linux基础-curl命令1.命令介绍:curl2.语法:3.常见参数:4.基本请求用法:5.保存访问的网页6.测试网页返回值7.指定proxy服务器以及其端口8.cookie9.模仿浏览器10.伪造referer(盗链)11.下载文件12.断点续传13.上传文件14.显示抓取错误 1.命令介绍:curlLinuxcurl是一个利用URL规则在命令行下工作的文件传输工具,可以说是一款很强大...
Linux curl 命令下载文件
热门推荐
我在全球村
04-18 2万+
命令curlLinuxcurl是一个利用URL规则在命令行下工作的文件传输工具,可以说是一款很强大的http命令行工具。它支持文件的上传和下载,是综合传输工具,但按传统,习惯称url为下载工具。 语法:# curl [option] [url] 常见参数: -A/--user-agent <string> 设置用户代理发送给服务器 -b/--cookie <name=string/file> cookie字符串或文件读取..
linux命令行使用curl命令查看自己机器的外网ip
01-10
Linux命令行下如何查看自己机器的外网ip?可以在命令行使用curl命令实现这个功能,试一下下面的命令吧 代码如下:curl ifconfig.me 输入此条命令,就可以获取到本机的外网ip。 您可能感兴趣的文章:LinuxCURL...
linux 或 mac 命令行更优雅的使用 curl 命令,以及命令行常用的快捷键说明
01-09
linux 或 mac 命令行更优雅的使用 curl 命令,以及命令行常用的快捷键说明 最近看了一下我的博客的访问统计,作为一个前端博主,没有想到我阅读量最高的一篇博文居然是介绍如何在命令行使用 curl 命令的文章《curl ...
快乐的linux命令行_linux_
09-30
"快乐的Linux命令行"这个主题旨在帮助初学者掌握Linux命令行的基本操作和常用命令,从而在使用Linux时获得更高的效率和乐趣。下面我们将深入探讨Linux命令行的一些关键知识点。 1. **Linux shell**: Linux命令行...
Linux常用命令文件下载wget、curl
weixin_40584261的博客
03-21 2831
当想要直接通过 Linux 命令行下载文件,马上就能想到两个工具:wget 和 curl。它们有很多一样的特征,可以很轻易的完成一些相同的任务,虽然它们有一些相似的特征,但它们并不是完全一样。这两个程序适用与不同的场合,在特定场合下,都拥有各自的特性。curl由于可自定义各种请求参数所以在模拟web请求方面更擅长;wget由于支持ftp和Recursive所以在下载文件方面更擅长。 wget 简单...
curl下载linux
03-17
基于libcurl/pthreads的多线程下载器,支持暂停、还原、中止,断点续传,支持HTTP,HTTPS协议链接,经过上千万级别的下载量测试,测试成功率99.5%,http://blog.csdn.net/u012532305/article/details/46709495也是这篇文章的源码 参考后,移植到了 linux平台
使用curl递归下载软件脚本分享
01-20
代码如下:#!/bin/env bashPATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbinexport PATHclearUrl=”http://mirrors.cnnic.cn/apache/”DownListFile=”/tmp/downlist.txt”DownListTmpFile=”/tmp/tmplist.txt”DownFileType=”zip$|gz$”DownList=””UrlBack=”$Url”[ ! -f $DownListFile ] && touch $DownListFile ||
linux下载文件的常用命令wget,curl使用方法及使用示例
最新发布
zrc_xiaoguo的博客
12-18 9983
Linux 操作系统中,有许多下载文件的工具可供选择。这些工具包括命令行工具和图形界面工具,每个工具都有其自身的特点和用途。
Linux使用Curl命令下载远程文件
ithover的博客
06-11 697
服务器上使用curl可以做很多访问相关的功能 下载也很方便,记录一下 #模拟浏览器get请求并保存文件为redis.rdb curl -i -XGET -O redis.rdb "https://redis.com/12502192.rdb" -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 E
linux curl 下载文件
TestFamily的专栏
12-15 6187
curl -o test -s -k -A "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)" http://192.168.10.201   通过curl
Linux下载工具Curl详解
zhangjiaweixt的专栏
09-22 874
Linux下载工具Curl也是Linux下不错的命令行下载工具,小巧、高速,唯一的缺点是不支持多线程下载。在 http://curl.haxx.se/download/curl-7.14.0.tar.gz下载最新版本。 下载后便可使用如下命令编译安装: #tar zxvf curl-7.14.0.tar.gz #cd curl-7.14.0/ #./configure #make #make test #make install Curl使用格式如下: #curl [选项][下载地址]Curl典型下载
linux curl命令用法
qq_44962948的博客
04-08 899
Linuxcurl是一个非常实用的、用来与服务器之间传输数据的工具 语法: # curl [option] [url] 发起get请求 不加任何选项使用 curl 时,默认会发送 GET 请求来获取链接内容到标准输出 curl http://www.baidu.com # -o 保存响应内容到文件 curl -o [文件名] http://www.baidu.com 或:curl http://www.baidu.com > result.txt # -i 输出head和响应结果 curl
LINUXcurl命令的用法
weixin_67775126的博客
04-29 208
curl命令的基本使用
Linux curl命令详解:强大的文件传输工具与常用参数
curl命令Linux环境中提供了丰富的功能,使得开发者和运维人员能够高效地进行网络数据交互,无论是下载资源、上传文件还是进行简单的网页抓取,都是得心应手的工具。掌握curl命令及其参数,对于提高Linux环境下的...
写文章

热门文章

  • 查看twitter浏览记录_如何查看Twitter提及的通知,但不喜欢或转发 61152
  • 504网关超时怎么解决_什么是504网关超时错误(以及如何解决)? 46127
  • Windows中的NTUSER.DAT文件是什么? 35763
  • 如何在Windows 10上打开RAW图像文件 27709
  • 如何在Chrome中自定义新标签页 15055

大家在看

  • go的事务操作,封装try 654
  • 开题无忧,芝士AI,只需一个标题,生成一篇必过开题报告!
  • (开题)flask框架大学生志愿者信息管理系统(程序+论文+python) 332
  • 统信软件根社区deepin推出中国首款信创生态自研IDE
  • windows C++ 并行编程-异步消息块(三) 76

最新文章

  • 如何检查您附近(或任何地方)的空气质量
  • iphone日程添加照片_如何将照片添加到您的iPhone主屏幕
  • 如何阻止iPhone小部件堆栈自动更改
2020年772篇

目录

目录

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43元 前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值

天下网标王泰安网站建设优化诊断规模大的服务行业网站优化热线怎么做网站优化价格廊坊靠谱的网站优化推广巩义网站排名优化哪家不错河源网站优化费用多少许昌360seo网站优化推荐河北网站优化怎么收费网站优化天天软文专业永康网站排名优化工具东至网站优化哪家价格实惠金华网站优化公司哪家好值得信赖南昌西湖网站优化排名大港网站优化价格牟平区智能响应式网站优化公司牡丹江seo网站优化南阳网站seo优化网站搜索优化联系兴田德润深圳网站seo关键词优化技巧芙蓉区怎么网站优化天津网站优化推广业务嘉兴网站seo优化方案邵阳高质量营销型网站优化上海企业网站优化外包网站绑定两个域名怎么优化广州黄埔网站优化推广蚌埠很好的网站优化用户体验东坑家具网站优化比较好的鞍山网站优化公司网站自然优化哪里好香港通过《维护国家安全条例》两大学生合买彩票中奖一人不认账让美丽中国“从细节出发”19岁小伙救下5人后溺亡 多方发声卫健委通报少年有偿捐血浆16次猝死汪小菲曝离婚始末何赛飞追着代拍打雅江山火三名扑火人员牺牲系谣言男子被猫抓伤后确诊“猫抓病”周杰伦一审败诉网易中国拥有亿元资产的家庭达13.3万户315晚会后胖东来又人满为患了高校汽车撞人致3死16伤 司机系学生张家界的山上“长”满了韩国人?张立群任西安交通大学校长手机成瘾是影响睡眠质量重要因素网友洛杉矶偶遇贾玲“重生之我在北大当嫡校长”单亲妈妈陷入热恋 14岁儿子报警倪萍分享减重40斤方法杨倩无缘巴黎奥运考生莫言也上北大硕士复试名单了许家印被限制高消费奥巴马现身唐宁街 黑色着装引猜测专访95后高颜值猪保姆男孩8年未见母亲被告知被遗忘七年后宇文玥被薅头发捞上岸郑州一火锅店爆改成麻辣烫店西双版纳热带植物园回应蜉蝣大爆发沉迷短剧的人就像掉进了杀猪盘当地回应沈阳致3死车祸车主疑毒驾开除党籍5年后 原水城县长再被查凯特王妃现身!外出购物视频曝光初中生遭15人围殴自卫刺伤3人判无罪事业单位女子向同事水杯投不明物质男子被流浪猫绊倒 投喂者赔24万外国人感慨凌晨的中国很安全路边卖淀粉肠阿姨主动出示声明书胖东来员工每周单休无小长假王树国卸任西安交大校长 师生送别小米汽车超级工厂正式揭幕黑马情侣提车了妈妈回应孩子在校撞护栏坠楼校方回应护栏损坏小学生课间坠楼房客欠租失踪 房东直发愁专家建议不必谈骨泥色变老人退休金被冒领16年 金额超20万西藏招商引资投资者子女可当地高考特朗普无法缴纳4.54亿美元罚金浙江一高校内汽车冲撞行人 多人受伤

天下网标王 XML地图 TXT地图 虚拟主机 SEO 网站制作 网站优化