Questions tagged [read-data]

130 questions
-1
votes
1 answer

Not printing all row values in excel sheet in Java

When im trying to read and print all row value from excel sheet,one-row value is not printing, please check the below code File src = new File("C:\\Users\\zuzu\\Desktop\\chat.xlsx"); FileInputStream fis = new FileInputStream(src); XSSFWorkbook wb =…
samkarthick
  • 1
  • 1
  • 7
-2
votes
1 answer

How to Read Data from report.html file in Robotic Framework

I have a use case to read data from report.html (Example Test case name & Elapsed time) and store into MySQL, then implement Grafana dashboard wrt test case name & Elapsed time) How can I achieve it ? How can I read data from report.html ?
-2
votes
1 answer

Compare two lines in Fortran

I have a data file with 2 columns. Let's say: column 1 (8,8,8,6,9), reading it as a. column 2 (3,4,5,6,7), reading it as b. I want to write a code checking if a(i)=a(i+1) then b=0. So result should be column 1 as a: (8,8,8,6,7), column 2 as b should…
-2
votes
2 answers

Seleniuim with java: Fetching Excel file data not getting full output on console-

I am trying with the following code to fetch all the data of excel. The number of rows in excel are 5 and columns are 20. PFB below Code package testRunner; import java.io.File; import java.io.FileInputStream; import…
mehak
  • 59
  • 1
  • 8
-2
votes
1 answer

how to read data from a URL

Is there a anyway to read data from a URL with SSL after with using tie(*SSL, "Net::SSLeay::Handle", $host, $port); my code below my $a = "POST /login.php HTTP/1.1"; my $b = "Host: www.test.com"; my $c = "Connection: close"; my $e =…
Seakleng Say
  • 350
  • 4
  • 13
-3
votes
1 answer

Python FileNotFoundError [Errno 2]

I am newbie to python coding and need your expertise help in my below issue, Currently I am trying to read data from a txt file and process further once its moved to a list. Below is my code: case 'add': todo = input("enter a…
-3
votes
2 answers

How to store text file line by line into temporary list after specific text

I would like to store line by line from the text file after read it. However, the text that store into the temporary list must be after the ": ". Below is the example of content in my text file: Name: Johny Age: 18 Favourite: Basketball, Food I…
-3
votes
1 answer

python error while i read data from file

If i input data like username = "exampleusername" password = "examplepassword" email = "example@example.com" year = "2018" software work good but i need software read data from file and if do this file = open("data.txt", "r") username =…
-3
votes
1 answer

Smart card Access Speed

Today here many Smart card available but some smart card take 4-5 second for Access data use command APDUs like i am use SLE 4442 its take 5 second to access. I need those Smart card which is access in 1 second no more time take and one thing more…
Ruby Bhullar
  • 5
  • 1
  • 5
1 2 3
8
9