用批處理吧
為寧武等地區(qū)用戶提供了全套網頁設計制作服務,及寧武網站建設行業(yè)解決方案。主營業(yè)務為成都網站設計、成都網站建設、外貿網站建設、寧武網站設計,以傳統(tǒng)方式定制建設網站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
@echo off
:1
set /p a=請輸入:
set /p b=請輸入:
type %a%\%b%
pause
cls
goto :1
只需要短短的幾句話就可以實現顯示文件信息了!
如果是顯示文件夾里的文件就把 type換成 dir就ok了
列:比如F盤里有一個11.txt 這個11.txt里顯示的是重要信息,那么就寫入F: 回車
然后再寫入 文件名 11.txt
就可以顯示文件內容了
我不怎么會VB,so....
Imports System.Net
Imports System.IO
Imports System.Text.RegularExpressions
Public Class Form1
Private Sub button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim stream As IO.Stream = WebRequest.Create(UrlAdress).GetResponse().GetResponseStream()
'注意urladress為你上面的網頁地址。
Dim sr As StreamReader = New StreamReader(stream, System.Text.Encoding.UTF8)
Label1.Text = Regex.Match(sr.ReadToEnd, "回答采納率").ToString
'sr。readtoend讀取網頁流到末尾,即使用正則表達式從網頁流中提取“回答采納率”,賦值給Label1.Text ‘沒有則為空
sr.Dispose() '關閉流
End Sub'要提取什么東西用正則表達式最好
End Class
當前單元格指的是 DataGridView 焦點所在的單元格,它可以通過 DataGridView 對象的 CurrentCell 屬性取得。
如果當前單元格不存在的時候,返回Nothing(C#是null)[VB.NET]
' 取得當前單元格內容
Console.WriteLine(DataGridView1.CurrentCell.Value)
' 取得當前單元格的列 Index
Console.WriteLine(DataGridView1.CurrentCell.ColumnIndex)
' 取得當前單元格的行 Index
Console.WriteLine(DataGridView1.CurrentCell.RowIndex) [C#]
// 取得當前單元格內容
Console.WriteLine(DataGridView1.CurrentCell.Value);
// 取得當前單元格的列 Index
Console.WriteLine(DataGridView1.CurrentCell.ColumnIndex);
// 取得當前單元格的行 Index
Console.WriteLine(DataGridView1.CurrentCell.RowIndex);
另外,使用 DataGridView.CurrentCellAddress 屬性(而不是直接訪問單元格)來確定單元格所在的行:DataGridView.CurrentCellAddress.Y 和列: DataGridView.CurrentCellAddress.X 。
這對于避免取消共享行的共享非常有用。
添加spire.doc.dll為引用,在vb.net中讀取指定word文檔的內容到?txt文件,代碼示例如下:
'加載Word文檔
Dim doc As Document = New Documentdocument.LoadFromFile("測試文檔.docx")
'使用GetText方法獲取文檔中的所有文本
Dim s As String = doc.GetText
File.WriteAllText("文本1.txt", s.ToString)