Questions tagged as 'archivo'

1
answer

Problem when loading image in php

I do not know what I'm doing wrong, I try to restrict the files I want to upload .. <pre> <?php $nombre = $_POST['nombre']; $foto = $_FILES['foto']['name']; $archivo= $_FILES['foto']['tmp_name']; $tipo= $_FILES["fo...
asked by 29.06.2018 / 23:37
0
answers

How to separate the data entered in a txt file by commas in c language?

int main() { struct datos { char nombre[21]; int edad; char ciudad[21]; }persona[10]; // Array de struct con datos para 10 personas. FILE *fichero; int i, numero=0; fichero = fopen("gente.txt", "wt...
asked by 24.06.2018 / 14:49
1
answer

Java - How to traverse a file.txt and order it?

Good day to all and thanks for answering. I am doing a program in which a file.txt is handled, it is a phone book that stores the name surnames and the telephone number of the person, however I have no idea how to make said agenda alphabetically...
asked by 06.06.2018 / 09:46
0
answers

how to delete a file from a modal?

I have a file editing modal where I show each file related to that specific ID <tbody> <?php while ($row2 = mysqli_fetch_assoc($resul)) { echo "<tr>";...
asked by 06.06.2018 / 10:17
0
answers

android documents

I am trying to create a file from a byte [] obtained from a web service. I am using this code with volley: String nameFile = Environment.DIRECTORY_DOWNLOADS + "\" + documento.NombreFichero; FileOutputStream outputStream; outputStream...
asked by 01.06.2018 / 14:09
1
answer

Permissions when attaching HTML files

I come with a doubt. Everyone knows that a file is used to attach a <input type="file" name="fileupload"value="fileupload" id="fileupload"> And the window to select the file opens, but can it be denied or controller that a file can be...
asked by 27.05.2018 / 07:40
1
answer

JAVA: how to query a word within a RandomAccessFile?

good is my first question here: I have doubts on how to make a query within a randomaccessfile. I have this part of the code the only thing that it does is that if I write the name of my first product that is in the list if it prints it, but if...
asked by 19.05.2018 / 03:53
0
answers

Read PDF hosted in my ASP: NET project

I need to read a PDF document that I have stored in a folder within my project, I have the following code but it does not do anything, I can not find the error: protected void btnConfirmar_Click(object sender, EventArgs e) { bool a...
asked by 14.05.2018 / 17:01
0
answers

Problem uploading and saving an image using krajee fileinput

I have a problem uploading and saving an image using fileinput of krajee does not save the image and shows the following error "SyntaxError: Unexpected end of JSON input"  Here I leave the code who can help me I appreciate it <...
asked by 25.04.2018 / 18:10
0
answers

IndexError: list index out of range, when formatting

I'm trying to format a file, my problem is that if inside "", there is an extra quote ("" ") thunders & throws this error, my code is as follows: with open(entrada, "r") as fichero: datos = fichero.read() datos = list(datos) indice=0 w...
asked by 19.04.2018 / 02:42