I'm making an app for my site, which is just a webview, can someone tell me if it's possible to put it on Smart TV? if so, can you tell me where to study? or even help me right here, I only have WEBVIEW so far.
Save everything good?
I stored a BLOB file and I'm looking to recover it, it's a JPG.
Below is the ResultSet of it:
byte[] bin = null; // (2)
ResultSet rs;
try {
rs = produtoCont...
I'm having a difficult time doing an exercise because I do not know how to solve this kind of casting:
The class D is the superclass.
The class C is the subclass.
D d = (D) (C) new D();
I would be grateful if anyone cou...
I want to capture the values of the properties of the XML responded by the server.
public ArrayList<Carga> smbcRequest(smbc smbc) {
//instanciando variaveis
PropertyInfo req = new PropertyInfo();
ArrayList<Carga> lista...
I have the following variable
List<MyFile> xmlDisponivel = new List<MyFile>();
This variable is a list of the following class
public class MyFile
{
public string FileName { get; set; }
public string FilePath { get; set...
I am trying to concatenate a text in% with% with% with%, but java warns that it is not possible to do this by saying:
The operator + is undefined for the argument type (s) CharSequence, int
I have already tried to remove the casting...
I'm doing a shopping program and found it on that same site. The answer to a problem I had, but I did not understand what the (Char)0 part would be, among others. I need to explain what this is.
private void preVenda_KeyPress(object sen...
The code below was working as expected, but I changed the info type in the structure List from Retangulo* to void* and tried anyway to cast but continue with the following error:
t.c: In function ‘imprimir’:
t.c:40:38: warning...
I have the most generic class Account and another ContaPoupaça that inherits from this class Conta . In this daughter I have an interface called ITributavel , because this class in addition to the methods and attributes of...